diff options
-rw-r--r-- | asl/assert.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/assert.hpp b/asl/assert.hpp index 2322a5b..4bf2eb3 100644 --- a/asl/assert.hpp +++ b/asl/assert.hpp @@ -5,7 +5,7 @@ #if ASL_COMPILER_CLANG_CL
#define ASL_DEBUG_BREAK() __debugbreak()
#elif ASL_COMPILER_CLANG
- #define ASL_DEBUG_BREAK() __builtin_debug_trap()
+ #define ASL_DEBUG_BREAK() __builtin_debugtrap()
#endif
#define ASL_ASSERT(...) \
|