summaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/utils.h b/src/utils.h
index 0a3afc4d..63b98029 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -103,10 +103,7 @@ namespace ledger {
#undef assert
#endif
-#if ! NO_ASSERTS
-#define ASSERTS_ON 1
-#endif
-#if ASSERTS_ON
+#if !NO_ASSERTS
namespace ledger {
void debug_assert(const string& reason, const string& func,
@@ -117,11 +114,11 @@ namespace ledger {
((x) ? ((void)0) : debug_assert(#x, BOOST_CURRENT_FUNCTION, \
__FILE__, __LINE__))
-#else // ! ASSERTS_ON
+#else // !NO_ASSERTS
#define assert(x)
-#endif // ASSERTS_ON
+#endif // !NO_ASSERTS
/*@}*/