From 46cc6bfc5f62bb45427ef7778ba5fc04d7a546da Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Mon, 28 Oct 2024 22:25:19 +0100 Subject: Fix Linux build --- asl/assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asl') 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(...) \ -- cgit