summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2014-04-11 14:59:12 -0400
committerEliot Horowitz <eliot@10gen.com>2014-04-14 00:23:08 -0400
commit78acc64523fbc05cd9a8c2f8980bbe51a0d957e7 (patch)
treef4662301863279c55717c2cdc13548ac9074f7c6 /src/mongo/db/storage
parent12a2947ebd5ebbf5282e2d5e2c673eeae840f578 (diff)
downloadmongo-78acc64523fbc05cd9a8c2f8980bbe51a0d957e7.tar.gz
SERVER-13084: move compact details down into RecordStore layer
Diffstat (limited to 'src/mongo/db/storage')
-rw-r--r--src/mongo/db/storage/record.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/record.h b/src/mongo/db/storage/record.h
index 8ac063f9e7d..db6a703b0ae 100644
--- a/src/mongo/db/storage/record.h
+++ b/src/mongo/db/storage/record.h
@@ -75,7 +75,7 @@ namespace mongo {
/* use this when a record is deleted. basically a union with next/prev fields */
DeletedRecord& asDeleted() { return *((DeletedRecord*) this); }
- DiskLoc myExtent(const DiskLoc& myLoc) const { return DiskLoc(myLoc.a(), extentOfs() ); }
+ DiskLoc myExtentLoc(const DiskLoc& myLoc) const { return DiskLoc(myLoc.a(), extentOfs() ); }
struct NP {
int nextOfs;