summaryrefslogtreecommitdiff
path: root/src/mongo/db/update/compare_node.h
diff options
context:
space:
mode:
authorADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:21:01 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-06-10 01:59:35 -0400
commitc36f9ecb91e49da7e637863889804fc4e6c6c05e (patch)
tree64d8aadb6d29042d4f4e7366bc1457e4e0612383 /src/mongo/db/update/compare_node.h
parentc9548e729c8fecd9d7a9a5dd341da0433194ac73 (diff)
downloadmongo-c36f9ecb91e49da7e637863889804fc4e6c6c05e.tar.gz
SERVER-39339 Remove `stdx/memory.h`
Diffstat (limited to 'src/mongo/db/update/compare_node.h')
-rw-r--r--src/mongo/db/update/compare_node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/update/compare_node.h b/src/mongo/db/update/compare_node.h
index 95bcd666d8f..a1f25f96203 100644
--- a/src/mongo/db/update/compare_node.h
+++ b/src/mongo/db/update/compare_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 {
@@ -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<CompareNode>(*this);
+ return std::make_unique<CompareNode>(*this);
}
void setCollator(const CollatorInterface* collator) final;