summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp')
-rw-r--r--src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp b/src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp
index 6cbb5572554..4801bc2c1dd 100644
--- a/src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp
+++ b/src/mongo/db/storage/kv/kv_drop_pending_ident_reaper_test.cpp
@@ -133,7 +133,7 @@ public:
std::vector<std::string> droppedIdents;
// Override to modify dropIdent() behavior.
- using DropIdentFn = stdx::function<Status(OperationContext*, StringData)>;
+ using DropIdentFn = std::function<Status(OperationContext*, StringData)>;
DropIdentFn dropIdentFn = [](OperationContext*, StringData) { return Status::OK(); };
};