mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-24 21:31:46 +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
|
#else
|
||||||
#define I_Assert(e) ((void)0)
|
#define I_Assert(e) ((void)0)
|
||||||
#endif
|
#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
|
// The character that separates pathnames. Forward slash on
|
||||||
// most systems, but reverse solidus (\) on Windows.
|
// most systems, but reverse solidus (\) on Windows.
|
||||||
|
|
Loading…
Reference in a new issue