mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-28 21:10:16 +01:00
common: xash3d_types: fix static_assert macro
This commit is contained in:
parent
778b8ede58
commit
9d8ba03f5e
@ -121,7 +121,7 @@ typedef uint64_t longtime_t;
|
|||||||
#define likely(x) (x)
|
#define likely(x) (x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined( static_assert ) // C11 static_assert
|
#if __STDC_VERSION__ >= 201112L || __cplusplus >= 201103L // C11 static_assert
|
||||||
#define STATIC_ASSERT static_assert
|
#define STATIC_ASSERT static_assert
|
||||||
#else
|
#else
|
||||||
#define STATIC_ASSERT( x, y ) extern int _static_assert_##__LINE__[( x ) ? 1 : -1]
|
#define STATIC_ASSERT( x, y ) extern int _static_assert_##__LINE__[( x ) ? 1 : -1]
|
||||||
|
Loading…
Reference in New Issue
Block a user