diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-06-30 12:18:27 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-07-06 18:34:06 -0400 |
commit | 896c568ab136c9735482a59abcab499bda997565 (patch) | |
tree | a7fff3d50906cff75d2bc1f44e4a698658768994 /src/mongo/stdx/future.h | |
parent | 6e7683cb836aa08b6df9aa2738774015236cd126 (diff) | |
download | mongo-896c568ab136c9735482a59abcab499bda997565.tar.gz |
SERVER-19099 Use std:: to back stdx polyfills
Diffstat (limited to 'src/mongo/stdx/future.h')
-rw-r--r-- | src/mongo/stdx/future.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mongo/stdx/future.h b/src/mongo/stdx/future.h index bc4816aff6f..c16b3c5996b 100644 --- a/src/mongo/stdx/future.h +++ b/src/mongo/stdx/future.h @@ -28,17 +28,17 @@ #pragma once -#include <boost/thread/future.hpp> +#include <future> namespace mongo { namespace stdx { -using boost::async; // NOLINT -using boost::future; // NOLINT -using boost::future_status; // NOLINT -using boost::launch; // NOLINT -using boost::packaged_task; // NOLINT -using boost::promise; // NOLINT +using ::std::async; // NOLINT +using ::std::future; // NOLINT +using ::std::future_status; // NOLINT +using ::std::launch; // NOLINT +using ::std::packaged_task; // NOLINT +using ::std::promise; // NOLINT } // namespace stdx } // namespace mongo |