aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp
diff options
context:
space:
mode:
authorGeir Storli <geirst@vespa.ai>2024-03-25 17:42:23 +0100
committerGitHub <noreply@github.com>2024-03-25 17:42:23 +0100
commit7a6ec3cd9c7e575d8134f21b8c6ee02f0bd40ad3 (patch)
treefd9a89750b011bb5f33da57dfeefd30f00b06a02 /searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp
parentcfc8ecf6bb750039cd03b166ad82d505663cafbb (diff)
parent78edc04eb66fb4335f28d55e48a08beecd0ee56e (diff)
Merge pull request #30731 from vespa-engine/havardpe/thread-local-blueprint-optionsv8.324.16
use thread_local for blueprint options
Diffstat (limited to 'searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp b/searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp
index 020452265ce..3be1009279b 100644
--- a/searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp
+++ b/searchlib/src/vespa/searchlib/queryeval/dot_product_blueprint.cpp
@@ -40,11 +40,11 @@ DotProductBlueprint::addTerm(Blueprint::UP term, int32_t weight, HitEstimate & e
}
void
-DotProductBlueprint::sort(InFlow, const Options &opts)
+DotProductBlueprint::sort(InFlow)
{
strict(true);
for (auto &term: _terms) {
- term->sort(true, opts);
+ term->sort(true);
}
}