aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h b/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
index 11898d1a630..e4eaad538cb 100644
--- a/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
+++ b/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
@@ -79,8 +79,8 @@ public:
void insertDocument(uint32_t lid, const document::Document &doc) override {
_index.insertDocument(lid, doc);
}
- void removeDocument(uint32_t lid) override {
- _index.removeDocument(lid);
+ void removeDocuments(LidVector lids) override {
+ _index.removeDocuments(std::move(lids));
}
uint64_t getStaticMemoryFootprint() const override {
return _index.getStaticMemoryFootprint();