aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp')
-rw-r--r--searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp b/searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp
index 0f7802d63b0..26d4050f440 100644
--- a/searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp
+++ b/searchlib/src/tests/predicate/predicate_bounds_posting_list_test.cpp
@@ -15,8 +15,8 @@ using namespace search::predicate;
namespace {
struct DummyDocIdLimitProvider : public DocIdLimitProvider {
- virtual uint32_t getDocIdLimit() const { return 10000; }
- virtual uint32_t getCommittedDocIdLimit() const { return 10000; }
+ virtual uint32_t getDocIdLimit() const override { return 10000; }
+ virtual uint32_t getCommittedDocIdLimit() const override { return 10000; }
};
vespalib::GenerationHandler generation_handler;