diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-03 19:08:01 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 6726a96f0cf3c230e9caa2abd40fcfbf03fe73a4 (patch) | |
tree | 7507aca9aeec5870090e2cc8be0b03b21301ef1f /asl/assert.hpp | |
parent | c6a4aa13c256a65123355636d30f4a7b38c4fccf (diff) |
A bunch of cleanup
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(); }
|