mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-21 20:11:12 +00:00
Fix compiler error in clang
This commit is contained in:
parent
853afa30df
commit
8ea215bf2f
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue