aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp b/searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp
index 7ba4bfc5711..a531df52d15 100644
--- a/searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp
+++ b/searchlib/src/vespa/searchlib/queryeval/same_element_blueprint.cpp
@@ -45,12 +45,12 @@ SameElementBlueprint::addTerm(Blueprint::UP term)
}
void
-SameElementBlueprint::sort(InFlow in_flow, const Options &opts)
+SameElementBlueprint::sort(InFlow in_flow)
{
strict(in_flow.strict());
auto flow = AndFlow(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());
}
}