Home | History | Annotate | Download | only in stubs

Lines Matching defs:is_pointer

41 //   is_pointer
91 template <class T> struct is_pointer;
163 // is_pointer is false except for pointer types. A cv-qualified type (e.g.
166 template <class T> struct is_pointer : false_type { };
167 template <class T> struct is_pointer<T*> : true_type { };
168 template <class T> struct is_pointer<const T> : is_pointer<T> { };
169 template <class T> struct is_pointer<volatile T> : is_pointer<T> { };
170 template <class T> struct is_pointer<const volatile T> : is_pointer<T> { };
237 is_pointer<T>::value)> { };