aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp b/searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp
index 09840d9a126..c267cec5e3c 100644
--- a/searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp
+++ b/searchlib/src/vespa/searchlib/query/streaming/dot_product_term.cpp
@@ -51,8 +51,9 @@ DotProductTerm::unpack_scores(Scores& scores, std::optional<double> score_thresh
}
void
-DotProductTerm::unpack_match_data(uint32_t docid, const ITermData& td, MatchData& match_data)
+DotProductTerm::unpack_match_data(uint32_t docid, const ITermData& td, MatchData& match_data, const fef::IIndexEnvironment& index_env)
{
+ (void) index_env;
Scores scores;
build_scores(scores);
unpack_scores(scores, std::nullopt, docid, td, match_data);