Tagged Questions
5
votes
5answers
760 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 ...
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?