summaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/searchvisitor/searchvisitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'streamingvisitors/src/vespa/searchvisitor/searchvisitor.h')
-rw-r--r--streamingvisitors/src/vespa/searchvisitor/searchvisitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/streamingvisitors/src/vespa/searchvisitor/searchvisitor.h b/streamingvisitors/src/vespa/searchvisitor/searchvisitor.h
index b6240fb5d8c..672a420e55a 100644
--- a/streamingvisitors/src/vespa/searchvisitor/searchvisitor.h
+++ b/streamingvisitors/src/vespa/searchvisitor/searchvisitor.h
@@ -184,13 +184,13 @@ private:
* @param hasSorting whether the search result should be sorted.
* @param visitor the search visitor.
* @param tmpSortBuffer the sort buffer containing the sort data.
- * @param documentId the document id of the document to collect.
+ * @param document the document to collect. Must be kept alive on the outside.
* @return true if the document was added to the heap
**/
bool collectMatchedDocument(bool hasSorting,
SearchVisitor & visitor,
const std::vector<char> & tmpSortBuffer,
- const vsm::StorageDocument * documentId);
+ const vsm::StorageDocument * document);
/**
* Callback function that is called when visiting is completed.
* Perform second phase ranking and calculate summary features / rank features if asked for.