vc6 workaround

[SVN r20906]
This commit is contained in:
Dave Abrahams 2003-11-22 03:20:17 +00:00
parent f18906ac6b
commit f6715137cf

View File

@ -58,9 +58,15 @@ template <>
struct minimum_category_impl<false,false>
{
template <class T1, class T2> struct apply
# if BOOST_WORKAROUND(BOOST_MSVC, == 1200)
{
typedef void type;
};
# else
: error_not_related_by_convertibility<T1,T2>
{
};
# endif
};
template <class T1 = mpl::_1, class T2 = mpl::_2>