diff options
Diffstat (limited to 'compat/assert.hpp')
-rw-r--r-- | compat/assert.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/assert.hpp b/compat/assert.hpp index a96b9e03..d63b30ff 100644 --- a/compat/assert.hpp +++ b/compat/assert.hpp @@ -54,9 +54,9 @@ namespace floormat { } while(false) #ifndef FM_NO_DEBUG -#define fm_assert_debug(...) fm_assert(__VA_ARGS__) +#define fm_debug_assert(...) fm_assert(__VA_ARGS__) #else -#define fm_assert_debug(...) void() +#define fm_debug_assert(...) void() #endif #define ASSERT_EXPR(var, expr, cond) \ |