summaryrefslogtreecommitdiffstats
path: root/searchcorespi/src/tests/plugin/factoryregistry_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcorespi/src/tests/plugin/factoryregistry_test.cpp')
-rw-r--r--searchcorespi/src/tests/plugin/factoryregistry_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcorespi/src/tests/plugin/factoryregistry_test.cpp b/searchcorespi/src/tests/plugin/factoryregistry_test.cpp
index 3c0214576c8..cc71f1c2005 100644
--- a/searchcorespi/src/tests/plugin/factoryregistry_test.cpp
+++ b/searchcorespi/src/tests/plugin/factoryregistry_test.cpp
@@ -15,13 +15,13 @@ struct MyFactory : IIndexManagerFactory {
virtual IIndexManager::UP createIndexManager(const IndexManagerConfig &,
const index::IndexMaintainerConfig &,
- const index::IndexMaintainerContext &) {
+ const index::IndexMaintainerContext &) override {
return IIndexManager::UP();
}
virtual config::ConfigKeySet getConfigKeys(
const string &,
const search::index::Schema &,
- const config::ConfigInstance &) {
+ const config::ConfigInstance &) override {
return config::ConfigKeySet();
}
};