From 396d98a1ccc5937def61daf94e2fd807f46adf48 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 11 Jun 2018 10:39:12 +0200 Subject: [PATCH] make dtor always virtual this is required because Query has virtual functions --- arangod/Aql/Query.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangod/Aql/Query.h b/arangod/Aql/Query.h index 0f840e6aec..c7e6fdc37d 100644 --- a/arangod/Aql/Query.h +++ b/arangod/Aql/Query.h @@ -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 \ No newline at end of file +#endif