From 687c512ec96ac77945aaf3bf160846e2081652db Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sat, 18 Sep 2004 06:34:19 +0000 Subject: [PATCH] MWCW workaround [SVN r25186] --- test/assert.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/assert.cpp b/test/assert.cpp index 0e848f4..6972332 100644 --- a/test/assert.cpp +++ b/test/assert.cpp @@ -61,7 +61,9 @@ struct her BOOST_MPL_ASSERT_NOT(( boost::is_pointer )); BOOST_MPL_ASSERT_RELATION( sizeof(T*), >, 1 ); BOOST_MPL_ASSERT_RELATION( 1, <, sizeof(T*) ); +#if !BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3202)) BOOST_MPL_ASSERT_MSG( true, GLOBAL_SCOPE_ERROR, (int,long) ); +#endif BOOST_MPL_ASSERT_MSG( true, MEMBER_FUNCTION_SCOPE_ERROR, () ); #if !defined(BOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES) BOOST_MPL_ASSERT_MSG( true, ANOTHER_MEMBER_FUNCTION_SCOPE_ERROR, (types) );