Loading...
Searching...
No Matches
Go to the documentation of this file.
9 #define ZERO_SIZED(TYPE) \
11 char zero_sized_marker[1]; \
13 static_assert(sizeof(TYPE) == 1)
15 #define ZERO_SIZED(TYPE) \
17 char zero_sized_marker[0]; \
19 _Static_assert(sizeof(TYPE) == 0)