Since boost is forbidden in a company I work for I need to implement its functionality in pure C++. I've looked into boost sources but they seem to be too complex to understand, at least for me. I know there is something called static_assert() in the C++0x standart, but I'd like not to use any C++0x features.
| |||||||||||
feedback
|
| |||||||||||||||
feedback
|
|
One other trick (which can be used in C) is to try to build an array with a negative size if the assert fail:
as a bonus, you may use a typedef instead of an object, so that it is usable in more contexts and doesn't takes place when it succeed:
finally, build a name with less chance of name clash (and reusable at least in different lines):
| |||||
feedback
|
|
Here is my own implementation of static assertions extracted from my code base: Usage:
When the static assertion test fails, a compiler error message that somehow contains the
| |||||
feedback
|
|
You could simply copy the macro from the Boost source file to your own code. If you don't need to support all the compilers Boost supports you can just pick the right definition for your compiler and omit the rest of the | |||
|
feedback
|
|
I am using the following header file, with code ripped from someone else...
| |||
|
feedback
|
|
I believe this should work:
| |||
|
feedback
|