Searched defs:remove_cv (Results 1 – 4 of 4) sorted by relevance
162 template <class T> struct remove_cv { using type = T; }; struct 163 template <class T> struct remove_cv<const T> { using type = T; }; struct 164 template <class T> struct remove_cv<volatile T> { using type = T; }; struct 165 template <class T> struct remove_cv<const volatile T> { using type = T; }; struct 176 typestd::remove_cv global() argument
21 struct _LIBCPP_NO_SPECIALIZATIONS remove_cv { struct 22 _LIBCPP_NODEBUGremove_cv global() argument
16 template <class T> struct remove_cv : cpp::type_identity<T> {}; global() struct
92 std::remove_cv_t<T> remove_cv() { in remove_cv() function