Home
last modified time | relevance | path

Searched defs:remove_cv (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__type_traits/
H A Dremove_cv.h24 struct remove_cv { struct
25 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dremove_cv.h21 struct _LIBCPP_NO_SPECIALIZATIONS remove_cv { struct
22 using type _LIBCPP_NODEBUG = __remove_cv(_Tp); argument
/freebsd/contrib/llvm-project/libc/src/__support/CPP/type_traits/
H A Dremove_cv.h18 template <class T> struct remove_cv : cpp::type_identity<T> {}; struct