summaryrefslogtreecommitdiff
path: root/src/mongo/db/update/set_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/update/set_node.h')
-rw-r--r--src/mongo/db/update/set_node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/update/set_node.h b/src/mongo/db/update/set_node.h
index f16c752f84d..4261f3e736b 100644
--- a/src/mongo/db/update/set_node.h
+++ b/src/mongo/db/update/set_node.h
@@ -29,9 +29,10 @@
#pragma once
+#include <memory>
+
#include "mongo/base/string_data.h"
#include "mongo/db/update/modifier_node.h"
-#include "mongo/stdx/memory.h"
namespace mongo {
@@ -45,7 +46,7 @@ public:
Status init(BSONElement modExpr, const boost::intrusive_ptr<ExpressionContext>& expCtx) final;
std::unique_ptr<UpdateNode> clone() const final {
- return stdx::make_unique<SetNode>(*this);
+ return std::make_unique<SetNode>(*this);
}
void setCollator(const CollatorInterface* collator) final {}