Searched defs:remove_volatile (Results 1 – 4 of 4) 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[]; }; argument
113 struct remove_volatile struct115 typedef T type;119 struct remove_volatile<volatile T> struct121 typedef T type;
161 struct remove_volatile struct163 typedef T type;167 struct remove_volatile<volatile T> struct169 typedef T type;
140 constexpr auto remove_volatile = metafunction<std::remove_volatile>; variable