2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-24 18:59:50 +01:00

common: xash3d_types: fix static_assert macro

This commit is contained in:
Alibek Omarov 2023-12-27 03:10:41 +03:00
parent 778b8ede58
commit 9d8ba03f5e

View File

@ -121,7 +121,7 @@ typedef uint64_t longtime_t;
#define likely(x) (x)
#endif
#if defined( static_assert ) // C11 static_assert
#if __STDC_VERSION__ >= 201112L || __cplusplus >= 201103L // C11 static_assert
#define STATIC_ASSERT static_assert
#else
#define STATIC_ASSERT( x, y ) extern int _static_assert_##__LINE__[( x ) ? 1 : -1]