Searched defs:remove_const (Results 1 – 3 of 3) sorted by relevance
21 template <class T> struct remove_const{ typedef T type; }; argument22 template <class T> struct remove_const<T const>{ typedef T type; }; argument25 template <class T, std::size_t N> struct remove_const<T const[N]>{ typedef T type[N]; }; struct27 template <class T> struct remove_const<T const[]>{ typedef T type[]; }; struct
20 remove_const struct22 typedef T type;27 remove_const<T const> struct29 typedef T type;
391 struct remove_const struct392 { typedef T type; };395 struct remove_const< const T> struct396 { typedef T type; };