SunPro CC workaround

[SVN r16514]
This commit is contained in:
Dave Abrahams
2002-12-04 16:18:31 +00:00
parent 4cc84aff24
commit 949a459d8a

View File

@ -500,8 +500,9 @@ test_zero_args()
#else
func_void_type v9; // just default construct
#endif
#if !defined(BOOST_MSVC)
#if !defined(BOOST_MSVC) || BOOST_MSVC > 1300 || defined(BOOST_STRICT_CONFIG)
BOOST_TEST(v9 == 0);
# if !defined(__SUNPRO_CC) || __SUNPRO_CC > 0x540 || defined(BOOST_STRICT_CONFIG)
BOOST_TEST(0 == v9);
#else
BOOST_TEST(v9.empty());