[ox/std] Fix Windows GCC build
All checks were successful
Build / build (push) Successful in 1m15s

This commit is contained in:
2025-09-04 01:21:13 -05:00
parent 312c818866
commit 2f340b13b2

View File

@@ -33,7 +33,7 @@ void panic(StringViewCR file, int const line, StringViewCR panicMsg, Error const
#endif
}
#if __GNUC__
#if __GNUC__ && !_WIN32
__attribute__((weak))
#endif
void panic(const char *file, int const line, char const*panicMsg, Error const&err) noexcept {