forked from boostorg/type_traits
Added a couple of boost:: qualifiers that were present in 1.34.1 but got lost from the Trunk.
[SVN r40683]
This commit is contained in:
@ -166,7 +166,7 @@ struct function_traits_helper<R (*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)>
|
||||
|
||||
template<typename Function>
|
||||
struct function_traits :
|
||||
public detail::function_traits_helper<typename add_pointer<Function>::type>
|
||||
public detail::function_traits_helper<typename boost::add_pointer<Function>::type>
|
||||
{
|
||||
};
|
||||
|
||||
|
@ -116,7 +116,7 @@ struct is_class_impl
|
||||
|
||||
# ifdef __EDG_VERSION__
|
||||
BOOST_TT_AUX_BOOL_TRAIT_DEF1(
|
||||
is_class,T, boost::detail::is_class_impl<typename remove_cv<T>::type>::value)
|
||||
is_class,T, boost::detail::is_class_impl<typename boost::remove_cv<T>::type>::value)
|
||||
# else
|
||||
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_class,T,::boost::detail::is_class_impl<T>::value)
|
||||
# endif
|
||||
|
Reference in New Issue
Block a user