#include <boost/assert.hpp> #include <sstream> int main() { float min = 0.0f; float max = 1.0f; float v = 2.0f; BOOST_ASSERT_MSG(v > min && v < max, static_cast<std ...
Niall continues to assert the usefulness of assertions, but this month, he shows you how to make your own. Last month we discussed the use of the assert() macro. Now we're going to look at how you can ...