summaryrefslogtreecommitdiff
path: root/src/mongo/db/update/pullall_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/update/pullall_node.h')
-rw-r--r--src/mongo/db/update/pullall_node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/update/pullall_node.h b/src/mongo/db/update/pullall_node.h
index e529123e5ef..432c143ee52 100644
--- a/src/mongo/db/update/pullall_node.h
+++ b/src/mongo/db/update/pullall_node.h
@@ -29,9 +29,10 @@
#pragma once
+#include <memory>
+
#include "mongo/base/string_data.h"
#include "mongo/db/update/array_culling_node.h"
-#include "mongo/stdx/memory.h"
namespace mongo {
@@ -47,7 +48,7 @@ public:
Status init(BSONElement modExpr, const boost::intrusive_ptr<ExpressionContext>& expCtx) final;
std::unique_ptr<UpdateNode> clone() const final {
- return stdx::make_unique<PullAllNode>(*this);
+ return std::make_unique<PullAllNode>(*this);
}
void acceptVisitor(UpdateNodeVisitor* visitor) final {