summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/matchengine
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-03-09 00:46:01 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-03-09 00:46:01 +0100
commit2a9f79e9b95bd0863a59172ee61ec274d5b9f817 (patch)
tree1c63b1306d5c9bdd076d578f2a9d45f183f7386a /searchcore/src/tests/proton/matchengine
parent94eea5f229b0a4034676002a423b226185a10820 (diff)
deiniline destructors
Diffstat (limited to 'searchcore/src/tests/proton/matchengine')
-rw-r--r--searchcore/src/tests/proton/matchengine/matchengine.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/searchcore/src/tests/proton/matchengine/matchengine.cpp b/searchcore/src/tests/proton/matchengine/matchengine.cpp
index 9d6f3ad0c6f..b739e9954aa 100644
--- a/searchcore/src/tests/proton/matchengine/matchengine.cpp
+++ b/searchcore/src/tests/proton/matchengine/matchengine.cpp
@@ -41,6 +41,8 @@ private:
SearchReply::UP _reply;
public:
+ LocalSearchClient();
+ ~LocalSearchClient();
void searchDone(SearchReply::UP reply) {
vespalib::MonitorGuard guard(_monitor);
_reply = std::move(reply);
@@ -57,6 +59,9 @@ public:
}
};
+LocalSearchClient::LocalSearchClient() {}
+LocalSearchClient::~LocalSearchClient() {}
+
TEST("requireThatSearchesExecute")
{
int numMatcherThreads = 16;