summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_always_boolean_test.cpp
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/matcher/expression_always_boolean_test.cpp
parentc9548e729c8fecd9d7a9a5dd341da0433194ac73 (diff)
downloadmongo-c36f9ecb91e49da7e637863889804fc4e6c6c05e.tar.gz
SERVER-39339 Remove `stdx/memory.h`
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()));