Reverted to previous version for Borland C++ Builder 5

[SVN r17228]
This commit is contained in:
John Maddock
2003-02-05 12:13:48 +00:00
parent 973bbc1164
commit 9dda999d6c

View File

@ -192,7 +192,11 @@ struct is_convertible_forwarder
} // namespace detail
#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x551)
BOOST_TT_AUX_BOOL_TRAIT_DEF2(is_convertible,From,To,(::boost::detail::is_convertible_impl<From,To>::value))
#else
BOOST_TT_AUX_BOOL_TRAIT_DEF2(is_convertible,From,To,(::boost::detail::is_convertible_forwarder<From,To>::value))
#endif
//
// Now add the full and partial specialisations
@ -284,3 +288,4 @@ TT_AUX_IS_CONVERTIBLE_FROM_FLOAT_CV_SPEC(long double)
#endif // BOOST_TT_IS_CONVERTIBLE_HPP_INCLUDED