forked from boostorg/type_traits
Added const and volatile versions for remove pointer
[SVN r18606]
This commit is contained in:
@ -42,6 +42,9 @@ template<> struct trait##_impl<spec> \
|
||||
|
||||
# define BOOST_TT_AUX_REMOVE_PTR_REF_RANK_1_SPEC(T) \
|
||||
BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_pointer,T*,T) \
|
||||
BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_pointer,T*const,T) \
|
||||
BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_pointer,T*volatile,T) \
|
||||
BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_pointer,T*const volatile,T) \
|
||||
BOOST_TT_AUX_BROKEN_TYPE_TRAIT_SPEC1(remove_reference,T&,T) \
|
||||
/**/
|
||||
|
||||
|
Reference in New Issue
Block a user