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/thread.h | |
parent | 6e7683cb836aa08b6df9aa2738774015236cd126 (diff) | |
download | mongo-896c568ab136c9735482a59abcab499bda997565.tar.gz |
SERVER-19099 Use std:: to back stdx polyfills
Diffstat (limited to 'src/mongo/stdx/thread.h')
-rw-r--r-- | src/mongo/stdx/thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/stdx/thread.h b/src/mongo/stdx/thread.h index e46900c02a3..2c88ba31119 100644 --- a/src/mongo/stdx/thread.h +++ b/src/mongo/stdx/thread.h @@ -28,13 +28,13 @@ #pragma once -#include <boost/thread.hpp> +#include <thread> namespace mongo { namespace stdx { -using thread = boost::thread; // NOLINT -namespace this_thread = boost::this_thread; // NOLINT +using thread = ::std::thread; // NOLINT +namespace this_thread = ::std::this_thread; // NOLINT } // namespace stdx } // namespace mongo |