summaryrefslogtreecommitdiff
path: root/pch.h
diff options
context:
space:
mode:
authordwight <dwight@10gen.com>2010-12-13 18:03:32 -0500
committerdwight <dwight@10gen.com>2010-12-13 18:03:32 -0500
commitc7c5a57b1fa9f32c5a5072e0fbe80ed32dbccd18 (patch)
treeba75e9fc3c0a79b5c381a8f8bce7c99b05014f5b /pch.h
parent74149fa1e2b8e11f34cc3557b3305afd9c85dd30 (diff)
downloadmongo-c7c5a57b1fa9f32c5a5072e0fbe80ed32dbccd18.tar.gz
eliminate the _DURABLE preprocessor define
Diffstat (limited to 'pch.h')
-rw-r--r--pch.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/pch.h b/pch.h
index 2afd1b16ea9..e36cb07ff57 100644
--- a/pch.h
+++ b/pch.h
@@ -97,8 +97,6 @@
namespace mongo {
-/** _DURABLE define - this likely goes away later. to facilitate testing for a while without impacting other things. */
-#if defined(_DURABLE)
# if defined(_TESTINTENT)
/** Use _TESTINTENT to test write intent declarations by using a read only view for non-declared operations.
We don't do journalling when _TESTINTENT is enabled.
@@ -107,12 +105,6 @@ namespace mongo {
# else
const bool testIntent = false;
# endif
-#else
-# if defined(_TESTINTENT)
-# error _TESTINTENT requires _DURABLE
-# endif
- const bool testIntent = false;
-#endif
using namespace std;
using boost::shared_ptr;