summaryrefslogtreecommitdiff
path: root/src/mongo/transport/service_executor_adaptive_test.cpp
diff options
context:
space:
mode:
authorADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:21:01 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:59:35 -0400
commitc36f9ecb91e49da7e637863889804fc4e6c6c05e (patch)
tree64d8aadb6d29042d4f4e7366bc1457e4e0612383 /src/mongo/transport/service_executor_adaptive_test.cpp
parentc9548e729c8fecd9d7a9a5dd341da0433194ac73 (diff)
downloadmongo-c36f9ecb91e49da7e637863889804fc4e6c6c05e.tar.gz
SERVER-39339 Remove `stdx/memory.h`
Diffstat (limited to 'src/mongo/transport/service_executor_adaptive_test.cpp')
-rw-r--r--src/mongo/transport/service_executor_adaptive_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/transport/service_executor_adaptive_test.cpp b/src/mongo/transport/service_executor_adaptive_test.cpp
index b2a7c471bbe..70d234ad356 100644
--- a/src/mongo/transport/service_executor_adaptive_test.cpp
+++ b/src/mongo/transport/service_executor_adaptive_test.cpp
@@ -140,9 +140,9 @@ protected:
template <class Options>
std::unique_ptr<ServiceExecutorAdaptive> makeAndStartExecutor() {
- auto configOwned = stdx::make_unique<Options>();
+ auto configOwned = std::make_unique<Options>();
config = configOwned.get();
- auto exec = stdx::make_unique<ServiceExecutorAdaptive>(
+ auto exec = std::make_unique<ServiceExecutorAdaptive>(
getGlobalServiceContext(), asioIoCtx, std::move(configOwned));
ASSERT_OK(exec->start());