diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-06-18 15:02:54 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-06-19 22:51:28 -0400 |
commit | 1178eff1ddf60a7dac3a8cd71e2fdd278aa01b52 (patch) | |
tree | ee3096045eb4d2e4f69d57ef85c66b3be69e4302 /src/mongo/s/cursors.h | |
parent | 4b5fa5fc711e4cf94291665575fd1c742ad3e7c3 (diff) | |
download | mongo-1178eff1ddf60a7dac3a8cd71e2fdd278aa01b52.tar.gz |
SERVER-19041 Simplify SimpleMutex
Diffstat (limited to 'src/mongo/s/cursors.h')
-rw-r--r-- | src/mongo/s/cursors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/cursors.h b/src/mongo/s/cursors.h index c3186156628..2e0d805402e 100644 --- a/src/mongo/s/cursors.h +++ b/src/mongo/s/cursors.h @@ -128,7 +128,7 @@ namespace mongo { void doTimeouts(); void startTimeoutThread(); private: - mutable mongo::mutex _mutex; + mutable stdx::mutex _mutex; PseudoRandom _random; |