Home
last modified time | relevance | path

Searched defs:remove_volatile (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/boost/type_traits/
Dremove_volatile.hpp21 template <class T> struct remove_volatile{ typedef T type; }; argument
22 template <class T> struct remove_volatile<T volatile>{ typedef T type; }; struct
25 template <class T, std::size_t N> struct remove_volatile<T volatile[N]>{ typedef T type[N]; }; struct
27 template <class T> struct remove_volatile<T volatile[]>{ typedef T type[]; }; argument
/third_party/boost/boost/interprocess/detail/
Dtype_traits.hpp113 struct remove_volatile struct
115 typedef T type;
119 struct remove_volatile<volatile T> struct
121 typedef T type;
/third_party/boost/boost/move/detail/
Dunique_ptr_meta_utils.hpp161 struct remove_volatile struct
163 typedef T type;
167 struct remove_volatile<volatile T> struct
169 typedef T type;
/third_party/boost/boost/hana/
Dtraits.hpp140 constexpr auto remove_volatile = metafunction<std::remove_volatile>; variable