summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-10-17 22:27:10 +0200
committerTor Egge <Tor.Egge@online.no>2022-10-17 22:35:08 +0200
commit684c52ab3936cd776baccd12b323b0aeb79b4e7b (patch)
tree19f0d35673c1bb322b03664f6f440bbb5bf64bc1 /eval
parentf784458afcf3b10aed430ce3cf6435a437189143 (diff)
Deinline LhsRhs destructor.
Diffstat (limited to 'eval')
-rw-r--r--eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp b/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
index 9adec5a549c..72c9cfba744 100644
--- a/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
+++ b/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
@@ -161,8 +161,11 @@ struct LhsRhs {
factor = (rhs_size / lhs_size);
}
}
+ ~LhsRhs();
};
+LhsRhs::~LhsRhs() = default;
+
TEST("require that various parameter combinations work") {
for (CellType lct : CellTypeUtils::list_types()) {
for (CellType rct : CellTypeUtils::list_types()) {