summaryrefslogtreecommitdiff
path: root/src/mongo/unittest/death_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/unittest/death_test.h')
-rw-r--r--src/mongo/unittest/death_test.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/unittest/death_test.h b/src/mongo/unittest/death_test.h
index df468c26ee5..0f1516f6968 100644
--- a/src/mongo/unittest/death_test.h
+++ b/src/mongo/unittest/death_test.h
@@ -32,7 +32,6 @@
#include <memory>
#include <string>
-#include "mongo/stdx/memory.h"
#include "mongo/unittest/unittest.h"
/**
@@ -108,7 +107,7 @@ public:
template <typename... Args>
DeathTest(Args&&... args)
- : DeathTestImpl([args...]() { return stdx::make_unique<T>(args...); }) {}
+ : DeathTestImpl([args...]() { return std::make_unique<T>(args...); }) {}
private:
std::string getPattern() override {