aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp b/searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp
index a561adf5b42..f2b11f3c5b5 100644
--- a/searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp
+++ b/searchlib/src/vespa/searchlib/query/streaming/wand_term.cpp
@@ -34,8 +34,9 @@ WandTerm::evaluate() const
}
void
-WandTerm::unpack_match_data(uint32_t docid, const ITermData& td, MatchData& match_data)
+WandTerm::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, _score_threshold, docid, td, match_data);