summaryrefslogtreecommitdiff
path: root/src/mongo/stdx/mutex.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-06-23 22:27:18 -0400
committerAndrew Morrow <acm@mongodb.com>2015-06-30 12:16:56 -0400
commitd879ba7b97b52e7f54bd93d0fdc147b127f87ece (patch)
treeb915369e2b6ae95fff846aed4656a5701dd09ad4 /src/mongo/stdx/mutex.h
parent6abd1d0e9cdc691e6daf30ce3316ffb820b9bb70 (diff)
downloadmongo-d879ba7b97b52e7f54bd93d0fdc147b127f87ece.tar.gz
SERVER-19099 Enforce polyfill usage via lint
Diffstat (limited to 'src/mongo/stdx/mutex.h')
-rw-r--r--src/mongo/stdx/mutex.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/stdx/mutex.h b/src/mongo/stdx/mutex.h
index 9dc0f0c07b1..4303d25fba2 100644
--- a/src/mongo/stdx/mutex.h
+++ b/src/mongo/stdx/mutex.h
@@ -35,16 +35,16 @@
namespace mongo {
namespace stdx {
-using boost::mutex;
-using boost::timed_mutex;
-using boost::recursive_mutex;
+using boost::mutex; // NOLINT
+using boost::timed_mutex; // NOLINT
+using boost::recursive_mutex; // NOLINT
-using boost::adopt_lock_t;
-using boost::defer_lock_t;
-using boost::try_to_lock_t;
+using boost::adopt_lock_t; // NOLINT
+using boost::defer_lock_t; // NOLINT
+using boost::try_to_lock_t; // NOLINT
-using boost::lock_guard;
-using boost::unique_lock;
+using boost::lock_guard; // NOLINT
+using boost::unique_lock; // NOLINT
#if _MSC_VER < 1900
#define MONGO_STDX_CONSTEXPR const