this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Handle static assert on old GCC

+6
+6
src/tic_assert.h
··· 3 3 #if (defined(DINGUX) || defined(__DJGPP__)) && !defined(static_assert) 4 4 #define static_assert _Static_assert 5 5 #endif 6 + 7 + #if defined(__GNUC__) && !defined(__clang__) && __GNUC__ < 5 8 + #define static_assert__(x,line) static char stat_ass ## line[(x) ? +1 : -1] 9 + #define static_assert_(x,line) static_assert__(x,line) 10 + #define static_assert(x,y) static_assert_(x, __LINE__) 11 + #endif