diff options
author | Dwight <dmerriman@gmail.com> | 2009-02-02 18:18:22 -0500 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2009-02-02 18:18:22 -0500 |
commit | d1ba9dfb497031952f774c7972fdeea4d2992189 (patch) | |
tree | 9a5cd8bd0be45a9efe4eb727be9005cd495595bc /stdafx.h | |
parent | c8acc4ac0a0d6dba77435768fbc61cc40f55e8c9 (diff) | |
download | mongo-d1ba9dfb497031952f774c7972fdeea4d2992189.tar.gz |
datastore work
Diffstat (limited to 'stdafx.h')
-rw-r--r-- | stdafx.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -191,7 +191,11 @@ namespace mongo { /* dassert is 'debug assert' -- might want to turn off for production as these could be slow. */ +#if defined(_DEBUG) #define dassert assert +#else +#define dassert(x) +#endif } // namespace mongo |