aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests
diff options
context:
space:
mode:
authorHÃ¥vard Pettersen <3535158+havardpe@users.noreply.github.com>2021-08-25 10:28:55 +0200
committerGitHub <noreply@github.com>2021-08-25 10:28:55 +0200
commit25a715b5479f1a8d001dbc2e6d4993652f82ba67 (patch)
treec3709aa42fb15ea21301cece8e94d2826cbca3de /eval/src/tests
parent44eda57b93fed75b04532311b81503650454a0ca (diff)
parent68551790e11aff76990be4a554ba00a7cb6e30ca (diff)
Merge pull request #18835 from vespa-engine/havardpe/improve-vespa-eval-expr
improve vespa-eval-expr
Diffstat (limited to 'eval/src/tests')
-rw-r--r--eval/src/tests/eval/interpreted_function/interpreted_function_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/tests/eval/interpreted_function/interpreted_function_test.cpp b/eval/src/tests/eval/interpreted_function/interpreted_function_test.cpp
index bcb2e29472c..a5d87c6cf0b 100644
--- a/eval/src/tests/eval/interpreted_function/interpreted_function_test.cpp
+++ b/eval/src/tests/eval/interpreted_function/interpreted_function_test.cpp
@@ -180,7 +180,7 @@ TEST("require that compilation meta-data can be collected") {
const auto &flag = tensor_function::inject(ValueType::from_spec("double"), 0, stash);
const auto &root = tensor_function::if_node(flag, concat_x5, mapped_x5, stash);
CTFMetaData meta;
- InterpretedFunction ifun(FastValueBuilderFactory::get(), root, meta);
+ InterpretedFunction ifun(FastValueBuilderFactory::get(), root, &meta);
fprintf(stderr, "compilation meta-data:\n");
for (const auto &step: meta.steps) {
fprintf(stderr, " %s -> %s\n", step.class_name.c_str(), step.symbol_name.c_str());