Go to the documentation of this file.
15 #define ASSERT(ignore) assert(ignore)
16 #define assert(ignore) ((void)0)
18 #define ASSERT(cond) _assert(#cond, (cond))
19 #define assert(cond) _assert(__func__, __LINE__, #cond, (int)(cond))
20 extern void _assert(
const char *func,
int line,
const char *str,
int cond);