aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp')
-rw-r--r--searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp b/searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp
index 1848ad8fc74..fb1434d4a0c 100644
--- a/searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp
+++ b/searchcore/src/tests/proton/reprocessing/document_reprocessing_handler/document_reprocessing_handler_test.cpp
@@ -19,11 +19,10 @@ struct MyProcessor : public ReprocessingType
DocumentId _docId;
MyProcessor() : _lid(0), _docId() {}
- virtual void handleExisting(uint32_t lid, DocumentType doc) {
+ virtual void handleExisting(uint32_t lid, DocumentType doc) override {
_lid = lid;
_docId = doc.getId();
}
- virtual void done() { }
};
typedef MyProcessor<IReprocessingReader, const Document &> MyReader;