What's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
|
feedback
|
|
C-1x adds the _Static_assert keyword. This seems to be implemented in gcc-4.6:
The first slot needs to be an integral constant expression. The second slot is a constant string literal which can be long ( | |||
|
feedback
|
|
This works in function and non-function scope (but not inside structs,unions).
UPDATE: For completeness sake, here's the version with `LINE
UPDATE2: GCC specific code GCC 4.3 (I guess) introduced the "error" and "warning" function attributes. If a call to a function with that attribute could not be eliminated through dead code elimination (or other measures) then an error or warning is generated. This can be used to make compile time asserts with user defined failure descriptions. It remains to determine how they can be used in namespace scope without resorting to a dummy function:
And this is how it looks like:
| ||||
feedback
|
|
From Wikipedia:
| |||||||||
feedback
|
clI know the question explicitly mentions gcc, but just for completeness here is a tweak for Microsoft compilers. Using the negatively sized array typedef does not persuade cl to spit out a decent error. It just says
Now
under
Gcc also gives an intelligible message:
| |||
|
feedback
|