summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine.h
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2018-07-08 15:32:08 -0400
committerGeert Bosch <geert@mongodb.com>2018-07-11 16:54:14 -0400
commitc225e347b049a2aa8fc507d142056b396fe5bfb8 (patch)
tree4fe9aa0640fdf19afeb54cf0e6735eb5adb36389 /src/mongo/db/storage/storage_engine.h
parentc9c340ad6e9e1f33cb001a8375c62d6b16138c74 (diff)
downloadmongo-c225e347b049a2aa8fc507d142056b396fe5bfb8.tar.gz
SERVER-36013 Remove isMMAPv1 predicates and resulting dead code
Diffstat (limited to 'src/mongo/db/storage/storage_engine.h')
-rw-r--r--src/mongo/db/storage/storage_engine.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mongo/db/storage/storage_engine.h b/src/mongo/db/storage/storage_engine.h
index 41c937019cd..5635070a7d9 100644
--- a/src/mongo/db/storage/storage_engine.h
+++ b/src/mongo/db/storage/storage_engine.h
@@ -208,13 +208,6 @@ public:
virtual bool isEphemeral() const = 0;
/**
- * Only MMAPv1 should override this and return true to trigger MMAPv1-specific behavior.
- */
- virtual bool isMmapV1() const {
- return false;
- }
-
- /**
* Populates and tears down in-memory data structures, respectively. Only required for storage
* engines that support recoverToStableTimestamp().
*