diff options
Diffstat (limited to 'asl/assert.hpp')
-rw-r--r-- | asl/assert.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/asl/assert.hpp b/asl/assert.hpp index 4bf2eb3..d95159a 100644 --- a/asl/assert.hpp +++ b/asl/assert.hpp @@ -11,3 +11,7 @@ #define ASL_ASSERT(...) \
if (__VA_ARGS__) {} \
else { ASL_DEBUG_BREAK(); }
+
+#define ASL_ASSERT_RELEASE(...) \
+ if (__VA_ARGS__) {} \
+ else { ASL_DEBUG_BREAK(); }
|