summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_catalog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_catalog.h')
-rw-r--r--src/mongo/db/storage/kv/kv_catalog.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/db/storage/kv/kv_catalog.h b/src/mongo/db/storage/kv/kv_catalog.h
index cbdbfc515bc..d253b9a1828 100644
--- a/src/mongo/db/storage/kv/kv_catalog.h
+++ b/src/mongo/db/storage/kv/kv_catalog.h
@@ -33,12 +33,11 @@
#include <map>
#include <string>
-#include <boost/thread/mutex.hpp>
-
#include "mongo/base/string_data.h"
#include "mongo/db/catalog/collection_options.h"
#include "mongo/db/record_id.h"
#include "mongo/db/storage/bson_collection_catalog_entry.h"
+#include "mongo/stdx/mutex.h"
namespace mongo {
@@ -128,7 +127,7 @@ namespace mongo {
};
typedef std::map<std::string,Entry> NSToIdentMap;
NSToIdentMap _idents;
- mutable boost::mutex _identsLock;
+ mutable stdx::mutex _identsLock;
};
}