Fix Clang compiler error due to CRASH macro

This commit is contained in:
Max Roncace
2026-03-27 23:50:31 -04:00
parent bd33160bb9
commit d63ffe6030
+1 -2
View File
@@ -218,7 +218,6 @@ using std::isnan;
#define IS_REF_NONNULL(r) (1)
#endif
#define CRASH(msg) OSPanic(__FILE__, __LINE__, "%s", msg)
#define CRASHF(msg, ...) OSPanic(__FILE__, __LINE__, msg, __VA_ARGS__)
#define CRASH(msg, ...) OSPanic(__FILE__, __LINE__, "%s", msg, ##__VA_ARGS__)
#endif