aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/wand
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/queryeval/wand')
-rw-r--r--searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.cpp4
-rw-r--r--searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.cpp b/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.cpp
index e90cce219d7..c0beaf19d70 100644
--- a/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.cpp
+++ b/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.cpp
@@ -67,12 +67,12 @@ ParallelWeakAndBlueprint::addTerm(Blueprint::UP term, int32_t weight, HitEstimat
}
void
-ParallelWeakAndBlueprint::sort(InFlow in_flow, const Options &opts)
+ParallelWeakAndBlueprint::sort(InFlow in_flow)
{
strict(in_flow.strict());
auto flow = OrFlow(in_flow);
for (auto &term: _terms) {
- term->sort(InFlow(flow.strict(), flow.flow()), opts);
+ term->sort(InFlow(flow.strict(), flow.flow()));
flow.add(term->estimate());
}
}
diff --git a/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.h b/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.h
index 22f8ee1bf6f..4a55bf14095 100644
--- a/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.h
+++ b/searchlib/src/vespa/searchlib/queryeval/wand/parallel_weak_and_blueprint.h
@@ -62,7 +62,7 @@ public:
set_tree_size(_terms.size() + 1);
}
- void sort(InFlow in_flow, const Options &opts) override;
+ void sort(InFlow in_flow) override;
FlowStats calculate_flow_stats(uint32_t docid_limit) const override;
SearchIterator::UP createLeafSearch(const fef::TermFieldMatchDataArray &tfmda) const override;