Chanbed name of detail is_signed implementation to avoid conflicts with numeric_traits detail is_signed implementation.

This commit is contained in:
Edward Diener
2015-04-01 17:57:51 -04:00
parent 2b84e5f125
commit 7af948ad26

View File

@@ -64,7 +64,7 @@ struct is_signed_select_helper<false>
};
template <class T>
struct is_signed
struct is_signed_impl
{
typedef ::boost::detail::is_signed_select_helper< ::boost::is_integral<T>::value || ::boost::is_enum<T>::value> selector;
typedef typename selector::template rebind<T> binder;
@@ -74,7 +74,7 @@ struct is_signed
}
template <class T> struct is_signed : public integral_constant<bool, boost::detail::is_signed<T>::value> {};
template <class T> struct is_signed : public integral_constant<bool, boost::detail::is_signed_impl<T>::value> {};
#else