aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/eval/function/function_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/tests/eval/function/function_test.cpp')
-rw-r--r--eval/src/tests/eval/function/function_test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval/src/tests/eval/function/function_test.cpp b/eval/src/tests/eval/function/function_test.cpp
index 793ba98c59b..64f9104d0e1 100644
--- a/eval/src/tests/eval/function/function_test.cpp
+++ b/eval/src/tests/eval/function/function_test.cpp
@@ -1035,6 +1035,7 @@ TEST("require that tensor cell cast must have valid cell type") {
struct CheckExpressions : test::EvalSpec::EvalTest {
bool failed = false;
size_t seen_cnt = 0;
+ ~CheckExpressions() override;
virtual void next_expression(const std::vector<vespalib::string> &param_names,
const vespalib::string &expression) override
{
@@ -1051,6 +1052,8 @@ struct CheckExpressions : test::EvalSpec::EvalTest {
double) override {}
};
+CheckExpressions::~CheckExpressions() = default;
+
TEST_FF("require that all conformance test expressions can be parsed",
CheckExpressions(), test::EvalSpec())
{