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