- expand the asserts into nothingness if not in a debug build

Sun, 04 May 2014 18:34:31 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 04 May 2014 18:34:31 +0300
changeset 129
54f27fa8f32f
parent 128
186ebeea2a85
child 130
885fd60e8bf1

- expand the asserts into nothingness if not in a debug build

src/macros.h file | annotate | diff | comparison | revisions
--- a/src/macros.h	Sun May 04 18:31:40 2014 +0300
+++ b/src/macros.h	Sun May 04 18:34:31 2014 +0300
@@ -61,8 +61,12 @@
 template<typename... argtypes>
 void error (const char* fmtstr, const argtypes&... args);
 
-#define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \
+#ifdef DEBUG
+# define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) ((A OP B) ? (void) 0 : \
 	error ("assertion failed at " __FILE__ ":%1: " #A " (%2) " COMPLAINT " " #B " (%3)", __LINE__, A, B));
+#else
+# define BOTC_GENERIC_ASSERT(A,B,OP,COMPLAINT) {}
+#endif
 
 #define ASSERT_EQ(A,B) BOTC_GENERIC_ASSERT (A, B, ==, "does not equal")
 #define ASSERT_NE(A,B) BOTC_GENERIC_ASSERT (A, B, !=, "is no different from")

mercurial