Browse Source

common: xash3d_types: fix static_assert macro

pull/2/head
Alibek Omarov 1 year ago
parent
commit
9d8ba03f5e
  1. 2
      common/xash3d_types.h

2
common/xash3d_types.h

@ -121,7 +121,7 @@ typedef uint64_t longtime_t; @@ -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]

Loading…
Cancel
Save