#elif -> #else (oops)

This commit is contained in:
Joshua 2025-03-26 18:47:23 -07:00
parent b55d427db1
commit 8949a32752
No known key found for this signature in database

View file

@ -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