Fix compiler error in clang

This commit is contained in:
Hanicef 2024-03-03 11:36:29 +01:00
parent 853afa30df
commit 8ea215bf2f

View file

@ -649,7 +649,7 @@ UINT32 quickncasehash (const char *p, size_t n)
#else
#define I_Assert(e) ((void)0)
#endif
#define I_StaticAssert(e) static_assert(e)
#define I_StaticAssert(e) static_assert(e, "Static assertion failed: " #e)
// The character that separates pathnames. Forward slash on
// most systems, but reverse solidus (\) on Windows.