Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dforwarding-reference-overload.cpp162 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
/llvm-project/libcxx/include/__type_traits/
H A Dremove_cv.h21 struct _LIBCPP_NO_SPECIALIZATIONS remove_cv { struct
22 _LIBCPP_NODEBUGremove_cv global() argument
/llvm-project/libc/src/__support/CPP/type_traits/
H A Dremove_cv.h16 template <class T> struct remove_cv : cpp::type_identity<T> {}; global() struct
/llvm-project/libcxx/test/std/utilities/meta/meta.unary/
H A Ddependent_return_type.compile.pass.cpp92 std::remove_cv_t<T> remove_cv() { in remove_cv() function