summaryrefslogtreecommitdiff
path: root/src/mongo/util/concurrency/spin_lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/concurrency/spin_lock.h')
-rw-r--r--src/mongo/util/concurrency/spin_lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/concurrency/spin_lock.h b/src/mongo/util/concurrency/spin_lock.h
index 7f237dc3175..5c5a17b4b74 100644
--- a/src/mongo/util/concurrency/spin_lock.h
+++ b/src/mongo/util/concurrency/spin_lock.h
@@ -37,7 +37,7 @@
#include "mongo/config.h"
#include "mongo/platform/compiler.h"
-#include "mongo/stdx/mutex.h"
+#include "mongo/platform/mutex.h"
namespace mongo {
@@ -86,7 +86,7 @@ public:
}
private:
- stdx::mutex _mutex;
+ stdx::mutex _mutex; // NOLINT
};
#else