--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
You could always use a preprocessor macro:
#define DEFAULT_STATIC_ASSERT(condition) static_assert(condition, #condition)
Joe Gottman
Yes, as I said, that is what I'm already doing with
BOOST_STATIC_ASSERT. I just think it's rather silly that we have to
use a macro to simulate what likely should be the default behavior to
begin with.