Tagged Questions

10
votes
9answers
1k 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 s …
4
votes
4answers
308 views

Wanted: a C++ template idea to catch an issue, but at compile time?

Hello, We have a const array of structs, something like this: static const SettingsSuT _table[] = { {5,1}, {1,2}, {1,1}, etc }; the structure has the following: size_bytes: nu …
3
votes
4answers
180 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(. …
0
votes
4answers
156 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, ... …
0
votes
2answers
74 views

How to statically assert a common property of many classes

Let's say I have 3 classes. I expect sizeof() each class to be exactly the same--say 512 bytes. How can I use something like BOOST_STATIC_ASSERT to apply to all of them such that …