summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/pipeline_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/pipeline/pipeline_test.cpp')
-rw-r--r--src/mongo/db/pipeline/pipeline_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/pipeline_test.cpp b/src/mongo/db/pipeline/pipeline_test.cpp
index d6179e48e78..5c824ff38ce 100644
--- a/src/mongo/db/pipeline/pipeline_test.cpp
+++ b/src/mongo/db/pipeline/pipeline_test.cpp
@@ -75,7 +75,7 @@ const NamespaceString kTestNss = NamespaceString("a.collection");
void setMockReplicationCoordinatorOnOpCtx(OperationContext* opCtx) {
repl::ReplicationCoordinator::set(
opCtx->getServiceContext(),
- stdx::make_unique<repl::ReplicationCoordinatorMock>(opCtx->getServiceContext()));
+ std::make_unique<repl::ReplicationCoordinatorMock>(opCtx->getServiceContext()));
}
namespace Optimizations {