summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/flushengine/flushengine_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/flushengine/flushengine_test.cpp')
-rw-r--r--searchcore/src/tests/proton/flushengine/flushengine_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/tests/proton/flushengine/flushengine_test.cpp b/searchcore/src/tests/proton/flushengine/flushengine_test.cpp
index d795ed95550..a7efe2952eb 100644
--- a/searchcore/src/tests/proton/flushengine/flushengine_test.cpp
+++ b/searchcore/src/tests/proton/flushengine/flushengine_test.cpp
@@ -119,7 +119,7 @@ public:
FlushDoneHistory _flushDoneHistory;
public:
- typedef std::shared_ptr<SimpleHandler> SP;
+ using SP = std::shared_ptr<SimpleHandler>;
SimpleHandler(const Targets &targets, const std::string &name = "anon",
search::SerialNum currentSerial = -1)
@@ -298,7 +298,7 @@ public:
mutable bool _serial;
public:
- typedef std::shared_ptr<AssertedTarget> SP;
+ using SP = std::shared_ptr<AssertedTarget>;
AssertedTarget()
: SimpleTarget("anon"),
@@ -348,7 +348,7 @@ public:
public:
- typedef std::shared_ptr<SimpleStrategy> SP;
+ using SP = std::shared_ptr<SimpleStrategy>;
SimpleStrategy() noexcept : _targets() {}