summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/matching
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-02-17 14:48:49 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-02-17 14:48:49 +0000
commitc4a01e6c3b85eb18ece1c4b5d9f337b08ba3b76d (patch)
treeb14b91e5e0afc084b0c1ada050bfd27932f4837b /searchcore/src/tests/proton/matching
parent17c5ae02ee13cf47516788263aa1792414a8c6a6 (diff)
Use enable_shared_from_this to simplify interface and keep the details local.
Diffstat (limited to 'searchcore/src/tests/proton/matching')
-rw-r--r--searchcore/src/tests/proton/matching/matching_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/matching/matching_test.cpp b/searchcore/src/tests/proton/matching/matching_test.cpp
index 95ab43dbcba..00a319db394 100644
--- a/searchcore/src/tests/proton/matching/matching_test.cpp
+++ b/searchcore/src/tests/proton/matching/matching_test.cpp
@@ -289,7 +289,7 @@ struct MyWorld {
DocsumReply::UP getDocsums(const DocsumRequest &) override {
return DocsumReply::UP();
}
- SearchReply::UP match(const ISearchHandler::SP &, const SearchRequest &, vespalib::ThreadBundle &) const override {
+ SearchReply::UP match(const SearchRequest &, vespalib::ThreadBundle &) const override {
return SearchReply::UP();
}
};