summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/getmore_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/getmore_cmd.cpp')
-rw-r--r--src/mongo/db/commands/getmore_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/getmore_cmd.cpp b/src/mongo/db/commands/getmore_cmd.cpp
index 4e168c9efe8..60f3436deb6 100644
--- a/src/mongo/db/commands/getmore_cmd.cpp
+++ b/src/mongo/db/commands/getmore_cmd.cpp
@@ -475,7 +475,7 @@ public:
// repeatedly release and re-acquire the collection readLock at regular intervals until
// the failpoint is released. This is done in order to avoid deadlocks caused by the
// pinned-cursor failpoints in this file (see SERVER-21997).
- stdx::function<void()> dropAndReacquireReadLock = [&readLock, opCtx, this]() {
+ std::function<void()> dropAndReacquireReadLock = [&readLock, opCtx, this]() {
// Make sure an interrupted operation does not prevent us from reacquiring the lock.
UninterruptibleLockGuard noInterrupt(opCtx->lockState());
readLock.reset();
@@ -553,7 +553,7 @@ public:
// the 'waitWithPinnedCursorDuringGetMoreBatch' failpoint is active, set the 'msg' field
// of this operation's CurOp to signal that we've hit this point and then spin until the
// failpoint is released.
- stdx::function<void()> saveAndRestoreStateWithReadLockReacquisition =
+ std::function<void()> saveAndRestoreStateWithReadLockReacquisition =
[exec, dropAndReacquireReadLock]() {
exec->saveState();
dropAndReacquireReadLock();