diff options
Diffstat (limited to 'src/mongo/db/concurrency/lock_state.h')
-rw-r--r-- | src/mongo/db/concurrency/lock_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/concurrency/lock_state.h b/src/mongo/db/concurrency/lock_state.h index 8ea914ffbeb..b179ae28e80 100644 --- a/src/mongo/db/concurrency/lock_state.h +++ b/src/mongo/db/concurrency/lock_state.h @@ -62,7 +62,7 @@ namespace mongo { virtual void notify(ResourceId resId, LockResult result); // These two go together to implement the conditional variable pattern. - boost::mutex _mutex; + stdx::mutex _mutex; boost::condition_variable _cond; // Result from the last call to notify |