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/condition_variable.h | |
parent | 6abd1d0e9cdc691e6daf30ce3316ffb820b9bb70 (diff) | |
download | mongo-d879ba7b97b52e7f54bd93d0fdc147b127f87ece.tar.gz |
SERVER-19099 Enforce polyfill usage via lint
Diffstat (limited to 'src/mongo/stdx/condition_variable.h')
-rw-r--r-- | src/mongo/stdx/condition_variable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/stdx/condition_variable.h b/src/mongo/stdx/condition_variable.h index e3d77a853a8..206a9e84465 100644 --- a/src/mongo/stdx/condition_variable.h +++ b/src/mongo/stdx/condition_variable.h @@ -33,9 +33,9 @@ namespace mongo { namespace stdx { -using condition_variable = boost::condition_variable; -using condition_variable_any = boost::condition_variable_any; -using cv_status = boost::cv_status; +using condition_variable = boost::condition_variable; // NOLINT +using condition_variable_any = boost::condition_variable_any; // NOLINT +using cv_status = boost::cv_status; // NOLINT } // namespace stdx } // namespace mongo |