Searched refs:remove_const_t (Results 1 – 3 of 3) sorted by relevance
21 static_assert((std::is_same<std::remove_const_t<T>, U>::value), ""); in test_remove_const_imp()
31 template <typename T> using remove_const_t = typename std::remove_const<T>::type; variable115 template <typename D, typename S> using same_const = copy_const<skstd::remove_const_t<D>, S>;
149 using remove_const_t = typename remove_const<T>::type; // C++14295 template <class _Tp> using remove_const_t = typename remove_const<_Tp>::type;