diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-06-23 22:27:18 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-06-30 12:16:56 -0400 |
commit | d879ba7b97b52e7f54bd93d0fdc147b127f87ece (patch) | |
tree | b915369e2b6ae95fff846aed4656a5701dd09ad4 /src/mongo/stdx/future.h | |
parent | 6abd1d0e9cdc691e6daf30ce3316ffb820b9bb70 (diff) | |
download | mongo-d879ba7b97b52e7f54bd93d0fdc147b127f87ece.tar.gz |
SERVER-19099 Enforce polyfill usage via lint
Diffstat (limited to 'src/mongo/stdx/future.h')
-rw-r--r-- | src/mongo/stdx/future.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/stdx/future.h b/src/mongo/stdx/future.h index bbc46efac14..bc4816aff6f 100644 --- a/src/mongo/stdx/future.h +++ b/src/mongo/stdx/future.h @@ -33,12 +33,12 @@ namespace mongo { namespace stdx { -using boost::async; -using boost::future; -using boost::future_status; -using boost::launch; -using boost::packaged_task; -using boost::promise; +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 } // namespace stdx } // namespace mongo |