Last fix had broken preprocessor logic, now fixed.

[SVN r11373]
This commit is contained in:
John Maddock 2001-10-11 12:04:00 +00:00
parent 628be0d125
commit 9961d5c9af

View File

@ -392,7 +392,7 @@ template struct call_traits_test<int*>;
#if defined(BOOST_MSVC6_MEMBER_TEMPLATES) || !defined(BOOST_NO_MEMBER_TEMPLATES) #if defined(BOOST_MSVC6_MEMBER_TEMPLATES) || !defined(BOOST_NO_MEMBER_TEMPLATES)
template struct call_traits_test<int&>; template struct call_traits_test<int&>;
template struct call_traits_test<const int&>; template struct call_traits_test<const int&>;
#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(__SUNPRO_CC) #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(__SUNPRO_CC)
template struct call_traits_test<int[2], true>; template struct call_traits_test<int[2], true>;
#endif #endif
#endif #endif
@ -416,3 +416,4 @@ unsigned int expected_failures = 0;