summaryrefslogtreecommitdiff
path: root/src/mongo/db/update/update_array_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/update/update_array_node.h')
-rw-r--r--src/mongo/db/update/update_array_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/update/update_array_node.h b/src/mongo/db/update/update_array_node.h
index 0c0ec5550d8..7d942698953 100644
--- a/src/mongo/db/update/update_array_node.h
+++ b/src/mongo/db/update/update_array_node.h
@@ -30,6 +30,7 @@
#pragma once
#include <map>
+#include <memory>
#include <string>
#include <utility>
#include <vector>
@@ -37,7 +38,6 @@
#include "mongo/base/clonable_ptr.h"
#include "mongo/db/matcher/expression_with_placeholder.h"
#include "mongo/db/update/update_internal_node.h"
-#include "mongo/stdx/memory.h"
namespace mongo {
@@ -66,7 +66,7 @@ public:
: UpdateInternalNode(Type::Array), _arrayFilters(arrayFilters) {}
std::unique_ptr<UpdateNode> clone() const final {
- return stdx::make_unique<UpdateArrayNode>(*this);
+ return std::make_unique<UpdateArrayNode>(*this);
}
void setCollator(const CollatorInterface* collator) final {