Tagged Questions
6
votes
6answers
2k views
BOOST_STATIC_ASSERT without boost
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 ...
2
votes
2answers
201 views
How to statically check an expression?
I have 4 int constants :
const int a1 = 1024;
const int a2 = 768;
const int b1 = 640;
const int b2 = 480;
and I want to statically check that they have the same ratio. To statically check, I am ...
2
votes
2answers
413 views
boost static_assert with message?
on 1.43 boost it seems that BOOST_STATIC_ASSERT just allows to put a boolean value, is there some alternative that allows me to display a message as well on the compile error?
0
votes
2answers
139 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
I only need to use ...