summaryrefslogtreecommitdiff
path: root/asl
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-10-28 22:25:19 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commit46cc6bfc5f62bb45427ef7778ba5fc04d7a546da (patch)
tree98419bd01e7f5685cbdd65a7fc4422114893be07 /asl
parent9337d8bc3cde964ba804274fd6d09173c416614f (diff)
Fix Linux build
Diffstat (limited to 'asl')
-rw-r--r--asl/assert.hpp2
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(...) \