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?
5
votes
5answers
688 views

What does static_assert do, and what would you use it for?

Could you give an example where static_assert(...) 'C++0x' would solve the problem in hand elegantly? I am familiar with run-time assert(...). When should I prefer static_assert(...) over regular ...
3
votes
1answer
122 views

C++0x: std::max(a,b) in static_assert()?

I noticed, that in [24.4.7] of the last C++-Std Doc N3291 max ist not constexpr: template<class T> const T& max(const T& a, const T& b); Therefore, it is not allowed to use it in ...
0
votes
5answers
921 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 ...