aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp')
-rw-r--r--searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp b/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
index 62a691d72e6..75e6b01b46f 100644
--- a/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
+++ b/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
@@ -42,6 +42,7 @@ struct MyIndexManager : public test::MockIndexManager
wantedLidLimit(0), compactSerial(0)
{
}
+ ~MyIndexManager() override;
std::string getPut(uint32_t lid) {
return toString(puts[lid]);
}
@@ -72,6 +73,8 @@ struct MyIndexManager : public test::MockIndexManager
}
};
+MyIndexManager::~MyIndexManager() = default;
+
struct Fixture
{
IIndexManager::SP iim;