summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/eof.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/eof.cpp')
-rw-r--r--src/mongo/db/exec/eof.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/exec/eof.cpp b/src/mongo/db/exec/eof.cpp
index 96148017d32..acd290f0f1a 100644
--- a/src/mongo/db/exec/eof.cpp
+++ b/src/mongo/db/exec/eof.cpp
@@ -31,14 +31,14 @@
#include "mongo/db/exec/eof.h"
+#include <memory>
+
#include "mongo/db/exec/scoped_timer.h"
-#include "mongo/stdx/memory.h"
namespace mongo {
using std::unique_ptr;
using std::vector;
-using stdx::make_unique;
// static
const char* EOFStage::kStageType = "EOF";
@@ -57,7 +57,7 @@ PlanStage::StageState EOFStage::doWork(WorkingSetID* out) {
unique_ptr<PlanStageStats> EOFStage::getStats() {
_commonStats.isEOF = isEOF();
- return make_unique<PlanStageStats>(_commonStats, STAGE_EOF);
+ return std::make_unique<PlanStageStats>(_commonStats, STAGE_EOF);
}
const SpecificStats* EOFStage::getSpecificStats() const {