summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGWlodarek <gregory.wlodarek@mongodb.com>2018-11-06 19:27:58 -0500
committerGWlodarek <gregory.wlodarek@mongodb.com>2018-11-06 21:53:44 -0500
commitf3349bac21f200cf2f9854eb51b359d3cbee3617 (patch)
tree4cc2f3908612b468b2d01554eeba91cb9b682707
parent4bbffceb949a74351f45af6ec4a1832f2b12fbe1 (diff)
downloadmongo-f3349bac21f200cf2f9854eb51b359d3cbee3617.tar.gz
SERVER-37706 Fix constant reference in KVEnginer4.1.5
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index c24ac53c7ee..335046082fa 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -399,6 +399,6 @@ protected:
/**
* The default capped size (in bytes) for capped collections, unless overridden.
*/
- static const int64_t kDefaultCappedSizeBytes = 4096;
+ const int64_t kDefaultCappedSizeBytes = 4096;
};
}