summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/index_catalog_entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/index_catalog_entry.h')
-rw-r--r--src/mongo/db/catalog/index_catalog_entry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/catalog/index_catalog_entry.h b/src/mongo/db/catalog/index_catalog_entry.h
index aed569daa0d..114644d503d 100644
--- a/src/mongo/db/catalog/index_catalog_entry.h
+++ b/src/mongo/db/catalog/index_catalog_entry.h
@@ -55,7 +55,7 @@ namespace mongo {
~IndexCatalogEntry();
- const string& ns() const { return _ns; }
+ const std::string& ns() const { return _ns; }
void init( OperationContext* txn,
IndexAccessMethod* accessMethod );
@@ -98,7 +98,7 @@ namespace mongo {
// -----
- string _ns;
+ std::string _ns;
CollectionCatalogEntry* _collection; // not owned here