diff options
Diffstat (limited to 'src/mongo/db/update/push_node.h')
-rw-r--r-- | src/mongo/db/update/push_node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/update/push_node.h b/src/mongo/db/update/push_node.h index beab21950cc..33677ae6652 100644 --- a/src/mongo/db/update/push_node.h +++ b/src/mongo/db/update/push_node.h @@ -31,12 +31,12 @@ #include <boost/optional.hpp> #include <limits> +#include <memory> #include <vector> #include "mongo/base/string_data.h" #include "mongo/db/update/modifier_node.h" #include "mongo/db/update/push_sorter.h" -#include "mongo/stdx/memory.h" namespace mongo { @@ -45,7 +45,7 @@ public: Status init(BSONElement modExpr, const boost::intrusive_ptr<ExpressionContext>& expCtx) final; std::unique_ptr<UpdateNode> clone() const final { - return stdx::make_unique<PushNode>(*this); + return std::make_unique<PushNode>(*this); } void setCollator(const CollatorInterface* collator) final { |