diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-28 22:25:19 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 46cc6bfc5f62bb45427ef7778ba5fc04d7a546da (patch) | |
tree | 98419bd01e7f5685cbdd65a7fc4422114893be07 /asl/assert.hpp | |
parent | 9337d8bc3cde964ba804274fd6d09173c416614f (diff) |
Fix Linux build
Diffstat (limited to 'asl/assert.hpp')
-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(...) \
|