From 7f025ef4b60ec55dfd110bf94c46e0e33b512772 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 2 May 2020 20:32:42 +0300 Subject: [PATCH] Change >> to > > for C++03 --- include/boost/endian/detail/is_scoped_enum.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/endian/detail/is_scoped_enum.hpp b/include/boost/endian/detail/is_scoped_enum.hpp index 8109980..f5690a9 100644 --- a/include/boost/endian/detail/is_scoped_enum.hpp +++ b/include/boost/endian/detail/is_scoped_enum.hpp @@ -22,7 +22,7 @@ template struct negation: boost::integral_constant {}; template struct is_scoped_enum: boost::conditional< boost::is_enum::value, - negation>, + negation< boost::is_convertible >, boost::false_type >::type {