summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/expression_array.h')
-rw-r--r--src/mongo/db/matcher/expression_array.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/matcher/expression_array.h b/src/mongo/db/matcher/expression_array.h
index 471549f105e..dc27f2f2ef0 100644
--- a/src/mongo/db/matcher/expression_array.h
+++ b/src/mongo/db/matcher/expression_array.h
@@ -76,8 +76,8 @@ public:
virtual std::unique_ptr<MatchExpression> shallowClone() const {
std::unique_ptr<ElemMatchObjectMatchExpression> e =
- stdx::make_unique<ElemMatchObjectMatchExpression>(path(),
- _sub->shallowClone().release());
+ std::make_unique<ElemMatchObjectMatchExpression>(path(),
+ _sub->shallowClone().release());
if (getTag()) {
e->setTag(getTag()->clone());
}
@@ -129,7 +129,7 @@ public:
virtual std::unique_ptr<MatchExpression> shallowClone() const {
std::unique_ptr<ElemMatchValueMatchExpression> e =
- stdx::make_unique<ElemMatchValueMatchExpression>(path());
+ std::make_unique<ElemMatchValueMatchExpression>(path());
for (size_t i = 0; i < _subs.size(); ++i) {
e->add(_subs[i]->shallowClone().release());
}
@@ -169,7 +169,7 @@ public:
virtual std::unique_ptr<MatchExpression> shallowClone() const {
std::unique_ptr<SizeMatchExpression> e =
- stdx::make_unique<SizeMatchExpression>(path(), _size);
+ std::make_unique<SizeMatchExpression>(path(), _size);
if (getTag()) {
e->setTag(getTag()->clone());
}