summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/summaryengine
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-08-11 00:35:31 +0200
committerHenning Baldersheim <balder@oath.com>2018-08-11 00:35:31 +0200
commite198573919f269bf62bb7ff22c0fb5797375ef9c (patch)
tree33b1c2b551290c70d6647c6c5b313758e5fe950c /searchcore/src/tests/proton/summaryengine
parent9f1d806d415b458b2139ce0cbf6b03a3ae979539 (diff)
Pass stringref by value
Diffstat (limited to 'searchcore/src/tests/proton/summaryengine')
-rw-r--r--searchcore/src/tests/proton/summaryengine/summaryengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/summaryengine/summaryengine.cpp b/searchcore/src/tests/proton/summaryengine/summaryengine.cpp
index 0a520044985..56596ec5bb6 100644
--- a/searchcore/src/tests/proton/summaryengine/summaryengine.cpp
+++ b/searchcore/src/tests/proton/summaryengine/summaryengine.cpp
@@ -38,7 +38,7 @@ class MySearchHandler : public ISearchHandler {
std::string _name;
stringref _reply;
public:
- MySearchHandler(const std::string &name = "my", const stringref &reply = MYREPLY)
+ MySearchHandler(const std::string &name = "my", stringref reply = MYREPLY)
: _name(name), _reply(reply)
{}
@@ -181,7 +181,7 @@ TEST("requireThatHandlersAreStored") {
}
bool
-assertDocsumReply(SummaryEngine &engine, const std::string &searchDocType, const stringref &expReply) {
+assertDocsumReply(SummaryEngine &engine, const std::string &searchDocType, stringref expReply) {
DocsumRequest::UP request(createRequest());
request->propertiesMap.lookupCreate(search::MapNames::MATCH).add("documentdb.searchdoctype", searchDocType);
MyDocsumClient client;