From 8949a327525b966520aeb26eb02e37709fff8dae Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 26 Mar 2025 18:47:23 -0700 Subject: [PATCH] #elif -> #else (oops) --- Common/include/Luau/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/include/Luau/Common.h b/Common/include/Luau/Common.h index 29fe5e58..8320621e 100644 --- a/Common/include/Luau/Common.h +++ b/Common/include/Luau/Common.h @@ -26,7 +26,7 @@ #define LUAU_DEBUGBREAK() __builtin_trap() #ifdef __APPLE__ #define LUAU_ASSUME(x) (void)sizeof(!!(x)) -#elif +#else #define LUAU_ASSUME(x) __attribute__((assume(x))); #endif #endif