From d8ba983889bd61a07bbc15c4cee3719819271ac0 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 20 Feb 2014 18:11:51 +0000 Subject: [PATCH] #if 0 around some debugging code. --- src/lib/util/coretmpl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/util/coretmpl.h b/src/lib/util/coretmpl.h index 9c385f8c84a..2c52c81dc5e 100644 --- a/src/lib/util/coretmpl.h +++ b/src/lib/util/coretmpl.h @@ -16,9 +16,11 @@ #include #include "osdcore.h" - +// TEMPORARY helper to catch is_pod assertions in the debugger +#if 0 #undef assert #define assert(x) do { if (!(x)) { printf("Assert: %s\n", #x); asm("int $3"); } } while (0) +#endif // ======================> dynamic_array