1
0
Fork 0

make dtor always virtual

this is required because Query has virtual functions
This commit is contained in:
jsteemann 2018-06-11 10:39:12 +02:00
parent 8e28b03efd
commit 396d98a1cc
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ class Query {
QueryPart
);
TEST_VIRTUAL ~Query();
virtual ~Query();
/// @brief clone a query
/// note: as a side-effect, this will also create and start a transaction for
@ -401,4 +401,4 @@ class Query {
}
}
#endif
#endif