summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/deferred_writer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/deferred_writer.cpp')
-rw-r--r--src/mongo/dbtests/deferred_writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/deferred_writer.cpp b/src/mongo/dbtests/deferred_writer.cpp
index 576cd28f6b5..fe3122e5b54 100644
--- a/src/mongo/dbtests/deferred_writer.cpp
+++ b/src/mongo/dbtests/deferred_writer.cpp
@@ -135,7 +135,7 @@ public:
*/
RaiiWrapper getWriter(CollectionOptions options = CollectionOptions(),
int64_t maxSize = 200'000) {
- return RaiiWrapper(stdx::make_unique<DeferredWriter>(kTestNamespace, options, maxSize));
+ return RaiiWrapper(std::make_unique<DeferredWriter>(kTestNamespace, options, maxSize));
}
virtual void run(void) = 0;