summaryrefslogtreecommitdiff
path: root/src/mongo/db/structure/record_store_v1_simple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/structure/record_store_v1_simple.cpp')
-rw-r--r--src/mongo/db/structure/record_store_v1_simple.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/structure/record_store_v1_simple.cpp b/src/mongo/db/structure/record_store_v1_simple.cpp
index 0964821b646..8a64e735d3d 100644
--- a/src/mongo/db/structure/record_store_v1_simple.cpp
+++ b/src/mongo/db/structure/record_store_v1_simple.cpp
@@ -42,7 +42,6 @@
#include "mongo/db/storage/record.h"
#include "mongo/db/structure/catalog/namespace_details.h"
#include "mongo/db/structure/record_store_v1_simple_iterator.h"
-#include "mongo/util/mmap.h"
#include "mongo/util/progress_meter.h"
#include "mongo/util/touch_pages.h"
@@ -62,7 +61,7 @@ namespace mongo {
&freelistIterations );
SimpleRecordStoreV1::SimpleRecordStoreV1( const StringData& ns,
- NamespaceDetails* details,
+ RecordStoreV1MetaData* details,
ExtentManager* em,
bool isSystemIndexes )
: RecordStoreV1Base( ns, details, em, isSystemIndexes ) {
@@ -263,7 +262,6 @@ namespace mongo {
void SimpleRecordStoreV1::addDeletedRec( const DiskLoc& dloc ) {
DeletedRecord* d = drec( dloc );
- BOOST_STATIC_ASSERT( sizeof(NamespaceDetails::Extra) <= sizeof(NamespaceDetails) );
{
Record *r = (Record *) getDur().writingPtr(d, sizeof(Record));