summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_always_boolean_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/expression_always_boolean_test.cpp')
-rw-r--r--src/mongo/db/matcher/expression_always_boolean_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/matcher/expression_always_boolean_test.cpp b/src/mongo/db/matcher/expression_always_boolean_test.cpp
index 5f89e36c48c..e18c7be11e8 100644
--- a/src/mongo/db/matcher/expression_always_boolean_test.cpp
+++ b/src/mongo/db/matcher/expression_always_boolean_test.cpp
@@ -46,7 +46,7 @@ TEST(AlwaysFalseMatchExpression, RejectsAllObjects) {
}
TEST(AlwaysFalseMatchExpression, EquivalentReturnsCorrectResults) {
- auto falseExpr = stdx::make_unique<AlwaysFalseMatchExpression>();
+ auto falseExpr = std::make_unique<AlwaysFalseMatchExpression>();
ASSERT_TRUE(falseExpr->equivalent(falseExpr.get()));
ASSERT_TRUE(falseExpr->equivalent(falseExpr->shallowClone().get()));
@@ -65,7 +65,7 @@ TEST(AlwaysTrueMatchExpression, AcceptsAllObjects) {
}
TEST(AlwaysTrueMatchExpression, EquivalentReturnsCorrectResults) {
- auto trueExpr = stdx::make_unique<AlwaysTrueMatchExpression>();
+ auto trueExpr = std::make_unique<AlwaysTrueMatchExpression>();
ASSERT_TRUE(trueExpr->equivalent(trueExpr.get()));
ASSERT_TRUE(trueExpr->equivalent(trueExpr->shallowClone().get()));