Searched defs:remove_const (Results 1 – 6 of 6) 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; }; struct25 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
22 struct remove_const { struct23 using type _LIBCPP_NODEBUG = __remove_const(_Tp); argument
98 struct remove_const { struct103 struct remove_const<const T> { struct107 int remove_const0[is_same<remove_const<const int>::type, int>::value? 1 : -1]; argument
85 std::remove_const_t<T> remove_const() { in remove_const() function
146 struct remove_const struct148 typedef T type;152 struct remove_const<const T> struct154 typedef T type;
557 struct remove_const struct558 { typedef T type; };561 struct remove_const< const T> struct562 { typedef T type; };