mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
3df6c383c0
Add C11's _Static_assert and static_assert macro. This is like #error, but is handled at a later stage of translation, so it is possible to check sizes of types, values of enums, etc. https://en.cppreference.com/w/c/language/_Static_assert https://port70.net/~nsz/c/c11/n1570.html#6.7.10