summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/callback_completion_guard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/callback_completion_guard.h')
-rw-r--r--src/mongo/db/repl/callback_completion_guard.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/repl/callback_completion_guard.h b/src/mongo/db/repl/callback_completion_guard.h
index 9eb4020db7d..4effb49c1f2 100644
--- a/src/mongo/db/repl/callback_completion_guard.h
+++ b/src/mongo/db/repl/callback_completion_guard.h
@@ -31,8 +31,8 @@
#pragma once
#include <boost/optional.hpp>
+#include <functional>
-#include "mongo/stdx/functional.h"
#include "mongo/stdx/mutex.h"
#include "mongo/util/assert_util.h"
@@ -52,12 +52,12 @@ public:
* Function to cancel remaining work in caller after setting '_result'.
* This function must be called while holding a lock on the caller's mutex.
*/
- using CancelRemainingWorkInLockFn = stdx::function<void()>;
+ using CancelRemainingWorkInLockFn = std::function<void()>;
/**
* Callback function to pass result to caller at destruction.
*/
- typedef stdx::function<void(const Result& result)> OnCompletionFn;
+ typedef std::function<void(const Result& result)> OnCompletionFn;
/**
* Constructor for this completion guard.