Searched defs:remove_const (Results 1 – 7 of 7) sorted by relevance
21 template <class T> struct remove_const{ typedef T type; }; struct22 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;
101 struct remove_const struct103 typedef T type;107 struct remove_const<const T> struct109 typedef T type;
146 struct remove_const struct148 typedef T type;152 struct remove_const<const T> struct154 typedef T type;
391 struct remove_const struct392 { typedef T type; };395 struct remove_const< const T> struct396 { typedef T type; };
141 constexpr auto remove_const = metafunction<std::remove_const>; variable