Searched defs:remove_volatile (Results 1 – 9 of 9) sorted by relevance
21 template <class T> struct remove_volatile{ typedef T type; }; argument22 template <class T> struct remove_volatile<T volatile>{ typedef T type; }; struct25 template <class T, std::size_t N> struct remove_volatile<T volatile[N]>{ typedef T type[N]; }; struct27 template <class T> struct remove_volatile<T volatile[]>{ typedef T type[]; }; struct
22 struct remove_volatile { struct23 using type _LIBCPP_NODEBUG = __remove_volatile(_Tp); argument
161 struct remove_volatile struct163 typedef T type;167 struct remove_volatile<volatile T> struct169 typedef T type;
119 std::remove_volatile_t<T> remove_volatile() { in remove_volatile() function