Searched refs:remove_cv_t (Results 1 – 3 of 3) sorted by relevance
21 static_assert((std::is_same<std::remove_cv_t<T>, U>::value), ""); in test_remove_cv_imp()
33 template <typename T> using remove_cv_t = typename std::remove_cv<T>::type; variable119 template <typename D, typename S> using same_cv = copy_cv<skstd::remove_cv_t<D>, S>;
153 using remove_cv_t = typename remove_cv<T>::type; // C++14311 template <class _Tp> using remove_cv_t = typename remove_cv<_Tp>::type;