From 6726a96f0cf3c230e9caa2abd40fcfbf03fe73a4 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 3 Nov 2024 19:08:01 +0100 Subject: A bunch of cleanup --- asl/assert.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'asl/assert.hpp') 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(); } -- cgit