summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authorization_session_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authorization_session_test.cpp')
-rw-r--r--src/mongo/db/auth/authorization_session_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/auth/authorization_session_test.cpp b/src/mongo/db/auth/authorization_session_test.cpp
index b0ec73151e4..184706257a1 100644
--- a/src/mongo/db/auth/authorization_session_test.cpp
+++ b/src/mongo/db/auth/authorization_session_test.cpp
@@ -1013,7 +1013,7 @@ TEST_F(AuthorizationSessionTest, CheckAuthForAggregateWithDeeplyNestedLookup) {
// Recursively adds nested $lookup stages to 'pipelineBob', building a pipeline with
// 'levelsToGo' deep $lookup stages.
- stdx::function<void(BSONArrayBuilder*, int)> addNestedPipeline;
+ std::function<void(BSONArrayBuilder*, int)> addNestedPipeline;
addNestedPipeline = [&addNestedPipeline](BSONArrayBuilder* pipelineBob, int levelsToGo) {
if (levelsToGo == 0) {
return;