
15 Dec
2006
15 Dec
'06
2:53 p.m.
"David Abrahams" <dave@boost-consulting.com> wrote in message news:87fybh1dvj.fsf_-_@pereiro.luannocracy.com...
Roland Schwarz <roland.schwarz@chello.at> writes:
Replacing:
BOOST_CHECK_EQUAL(a,b)
by
BOOST_CHECK(a == b)
also makes the internal compiler error go away...
Gennadiy, what do you think about
#define BOOST_CHECK_EQUAL(a,b) BOOST_CHECK((a) == (b))
for this compiler?
We could do this #if !defined(NDEBUG) && BOOST_WORKAROUND(BOOST_MSVC,<=1200) Gennadiy