aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-08-28 15:33:37 +0200
committerHenning Baldersheim <balder@oath.com>2018-08-28 15:33:37 +0200
commit7b6562b9b1e9da14386118826e7936ff5b8b5788 (patch)
tree07e0f98175dae74dd90120ff94d023aa7d72e617 /searchsummary
parent60d9e3beca7ebeca83ac5fd96f1950ba4578bfc9 (diff)
shared_ptr -> unique_ptr
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/tests/docsummary/positionsdfw_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchsummary/src/tests/docsummary/positionsdfw_test.cpp b/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
index 28773b2633f..7497a66d138 100644
--- a/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
+++ b/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
@@ -71,7 +71,7 @@ public:
}
void
- asyncForAttribute(const vespalib::string &, std::shared_ptr<IAttributeFunctor>) const override {
+ asyncForAttribute(const vespalib::string &, std::unique_ptr<IAttributeFunctor>) const override {
LOG_ABORT("MyAttributeContext::asyncForAttribute should not be reached");
}
};
@@ -92,7 +92,7 @@ public:
}
void
- asyncForAttribute(const vespalib::string &, std::shared_ptr<IAttributeFunctor>) const override {
+ asyncForAttribute(const vespalib::string &, std::unique_ptr<IAttributeFunctor>) const override {
LOG_ABORT("should not be reached");
}