mirror of
https://github.com/boostorg/type_traits.git
synced 2025-08-02 22:14:29 +02:00
Chanbed name of detail is_signed implementation to avoid conflicts with numeric_traits detail is_signed implementation.
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user