summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp')
-rw-r--r--src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp
index 0d4c5fbc477..24a5f3832d6 100644
--- a/src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp
+++ b/src/mongo/db/storage/wiredtiger/wiredtiger_standard_record_store_test.cpp
@@ -54,7 +54,6 @@
#include "mongo/db/storage/wiredtiger/wiredtiger_session_cache.h"
#include "mongo/db/storage/wiredtiger/wiredtiger_size_storer.h"
#include "mongo/db/storage/wiredtiger/wiredtiger_util.h"
-#include "mongo/stdx/memory.h"
#include "mongo/unittest/temp_dir.h"
#include "mongo/unittest/unittest.h"
#include "mongo/util/clock_source_mock.h"
@@ -124,7 +123,7 @@ public:
params.cappedCallback = nullptr;
params.sizeStorer = nullptr;
- auto ret = stdx::make_unique<StandardWiredTigerRecordStore>(&_engine, &opCtx, params);
+ auto ret = std::make_unique<StandardWiredTigerRecordStore>(&_engine, &opCtx, params);
ret->postConstructorInit(&opCtx);
return std::move(ret);
}
@@ -170,7 +169,7 @@ public:
params.cappedCallback = nullptr;
params.sizeStorer = nullptr;
- auto ret = stdx::make_unique<StandardWiredTigerRecordStore>(&_engine, &opCtx, params);
+ auto ret = std::make_unique<StandardWiredTigerRecordStore>(&_engine, &opCtx, params);
ret->postConstructorInit(&opCtx);
return std::move(ret);
}
@@ -195,7 +194,7 @@ private:
};
std::unique_ptr<HarnessHelper> makeHarnessHelper() {
- return stdx::make_unique<WiredTigerHarnessHelper>();
+ return std::make_unique<WiredTigerHarnessHelper>();
}
MONGO_INITIALIZER(RegisterHarnessFactory)(InitializerContext* const) {