forked from boostorg/iterator
vc6 workaround
[SVN r20906]
This commit is contained in:
@ -58,9 +58,15 @@ template <>
|
|||||||
struct minimum_category_impl<false,false>
|
struct minimum_category_impl<false,false>
|
||||||
{
|
{
|
||||||
template <class T1, class T2> struct apply
|
template <class T1, class T2> struct apply
|
||||||
|
# if BOOST_WORKAROUND(BOOST_MSVC, == 1200)
|
||||||
|
{
|
||||||
|
typedef void type;
|
||||||
|
};
|
||||||
|
# else
|
||||||
: error_not_related_by_convertibility<T1,T2>
|
: error_not_related_by_convertibility<T1,T2>
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
# endif
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class T1 = mpl::_1, class T2 = mpl::_2>
|
template <class T1 = mpl::_1, class T2 = mpl::_2>
|
||||||
|
Reference in New Issue
Block a user