Change >> to > > for C++03

This commit is contained in:
Peter Dimov
2020-05-02 20:32:42 +03:00
parent ceb58197d5
commit 7f025ef4b6

View File

@ -22,7 +22,7 @@ template<class T> struct negation: boost::integral_constant<bool, !T::value> {};
template<class T> struct is_scoped_enum:
boost::conditional<
boost::is_enum<T>::value,
negation<boost::is_convertible<T, int>>,
negation< boost::is_convertible<T, int> >,
boost::false_type
>::type
{