Home | History | Annotate | Download | only in stubs

Lines Matching defs:is_pointer

40 //   is_pointer
71 template <class T> struct is_pointer;
136 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
139 template <class T> struct is_pointer : false_type { };
140 template <class T> struct is_pointer<T*> : true_type { };
141 template <class T> struct is_pointer<const T> : is_pointer<T> { };
142 template <class T> struct is_pointer<volatile T> : is_pointer<T> { };
143 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { };
210 is_pointer<T>::value)> { };