aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/docstore
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahoo-inc.com>2017-03-13 13:51:40 +0000
committerTor Brede Vekterli <vekterli@yahoo-inc.com>2017-03-13 14:20:46 +0000
commit6c6a2f7b840f65209563ec1553cc71cfa02683a6 (patch)
tree666d79fd6b24257944b438d5daf9ce66c342a3ab /searchlib/src/tests/docstore
parent720617cf9e441059558870525cfefe94a85df788 (diff)
Create explicit, non implicitly inlined function definitions
Diffstat (limited to 'searchlib/src/tests/docstore')
-rw-r--r--searchlib/src/tests/docstore/logdatastore/logdatastore_test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/searchlib/src/tests/docstore/logdatastore/logdatastore_test.cpp b/searchlib/src/tests/docstore/logdatastore/logdatastore_test.cpp
index 3f42464ffe5..9d99a15894a 100644
--- a/searchlib/src/tests/docstore/logdatastore/logdatastore_test.cpp
+++ b/searchlib/src/tests/docstore/logdatastore/logdatastore_test.cpp
@@ -341,6 +341,7 @@ public:
GrowStrategy(), TuneFileSummary(),
_fileHeaderContext, _tlSyncer, NULL)
{ }
+ ~VisitStore();
IDataStore & getStore() { return _datastore; }
private:
TmpDirectory _myDir;
@@ -351,6 +352,9 @@ private:
LogDataStore _datastore;
};
+VisitStore::~VisitStore() {
+}
+
TEST("test visit cache does not cache empty ones and is able to access some backing store.") {
const char * A7 = "aAaAaAa";
VisitStore store;