Tagged Questions
10
votes
10answers
5k views
Ways to ASSERT expressions at build time in C
I'm tidying up some older code that uses 'magic numbers' all over the place to set hardware registers, and I would like to use constants instead of these numbers to make the code somewhat more ...
9
votes
4answers
2k views
Static assert in C
What's the best way to achieve compile time static asserts in C (not C++), with particular emphasis on GCC?
3
votes
4answers
149 views
How can I add a static assert to check if a variable is static?
I have a macro which works well only on static local variables (since it uses inline assembly notation to extract data about the variable). I need a way to enforce that the input to the macro is ...
3
votes
4answers
303 views
Use static_assert to check types passed to macro
I unfortunately have several macros left over from the original version of my library that employed some pretty crazy C. In particular, I have a series of macros that expect certain types to be passed ...
0
votes
5answers
950 views
C Compile-Time assert with constant array
I have a very big constant array that is initialized at compile time.
typedef enum {
VALUE_A, VALUE_B,...,VALUE_GGF
} VALUES;
const int arr[VALUE_GGF+1] = { VALUE_A, VALUE_B, ... ,VALUE_GGF};
I ...