summaryrefslogtreecommitdiff
path: root/src/mongo/db/range_deleter_test.cpp
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2015-10-08 13:16:56 -0400
committerMathias Stearn <mathias@10gen.com>2015-10-08 13:16:56 -0400
commitbba9860a221db1e43e71d547f6d5043d180f837b (patch)
tree72db82a71e133355da88e149436751a9a48699af /src/mongo/db/range_deleter_test.cpp
parent5be08a11886329994ee73950f031c2ee3b4c9309 (diff)
downloadmongo-bba9860a221db1e43e71d547f6d5043d180f837b.tar.gz
SERVER-20707 fix compile on clang
Diffstat (limited to 'src/mongo/db/range_deleter_test.cpp')
-rw-r--r--src/mongo/db/range_deleter_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/range_deleter_test.cpp b/src/mongo/db/range_deleter_test.cpp
index 29034535e44..76c0fc60d0f 100644
--- a/src/mongo/db/range_deleter_test.cpp
+++ b/src/mongo/db/range_deleter_test.cpp
@@ -51,7 +51,7 @@ OperationContext* const noTxn = NULL; // MockEnv doesn't need txn XXX SERVER-13
// Capped sleep interval is 640 mSec, Nyquist frequency is 1280 mSec => round up to 2 sec.
const int MAX_IMMEDIATE_DELETE_WAIT_SECS = 2;
-const mongo::repl::ReplSettings replSettings;
+const mongo::repl::ReplSettings replSettings = {};
// Should not be able to queue deletes if deleter workers were not started.
TEST(QueueDelete, CantAfterStop) {