summaryrefslogtreecommitdiff
path: root/db/repl.h
diff options
context:
space:
mode:
Diffstat (limited to 'db/repl.h')
-rw-r--r--db/repl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/repl.h b/db/repl.h
index 9dd9f72faac..3f6909f83cf 100644
--- a/db/repl.h
+++ b/db/repl.h
@@ -64,9 +64,11 @@ namespace mongo {
bool autoresync;
int slavedelay;
+
+ bool pretouch;
ReplSettings()
- : slave(NotSlave) , master(false) , opIdMem(100000000) , fastsync() , autoresync(false), slavedelay() {
+ : slave(NotSlave) , master(false) , opIdMem(100000000) , fastsync() , autoresync(false), slavedelay(), pretouch(false) {
}
};