summaryrefslogtreecommitdiff
path: root/db/namespace.h
diff options
context:
space:
mode:
authorDwight <dwight@10gen.com>2010-09-30 15:14:10 -0400
committerDwight <dwight@10gen.com>2010-09-30 15:14:10 -0400
commit5b0b5d7eb64e405815320badab9f499a579b4bdc (patch)
treed70d38174cf8aa8c46601cbabc09d587bf32af80 /db/namespace.h
parentb49aec13a42717015a2912804d5f7140dee506cf (diff)
downloadmongo-5b0b5d7eb64e405815320badab9f499a579b4bdc.tar.gz
remove MMF:pointer to keep code simple - we are going to take a different approach
Diffstat (limited to 'db/namespace.h')
-rw-r--r--db/namespace.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/db/namespace.h b/db/namespace.h
index 48d08b9701a..83ff4cfd491 100644
--- a/db/namespace.h
+++ b/db/namespace.h
@@ -23,7 +23,6 @@
#include "queryutil.h"
#include "diskloc.h"
#include "../util/hashtab.h"
-#include "../util/mmap.h"
namespace mongo {
@@ -534,7 +533,7 @@ namespace mongo {
void maybeMkdir() const;
MMF f;
- HashTable<Namespace,NamespaceDetails,MMF::Pointer> *ht;
+ HashTable<Namespace,NamespaceDetails> *ht;
string dir_;
string database_;
};