Home
last modified time | relevance | path

Searched defs:remove_cvref (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dremove_cvref.h32 struct remove_cvref { struct
36 template <class _Tp> using remove_cvref_t = typename remove_cvref<_Tp>::type; argument
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dforwarding-reference-overload.cpp167 template <class T> struct remove_cvref { using type = remove_cv_t<remove_reference_t<T>>; }; struct
176 typename std::enable_if_t<std::is_same_v<std::remove_cvref_t<T>, int>, int>::type = 0>