Home
last modified time | relevance | path

Searched defs:remove_reference (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/boost/type_traits/
Dremove_reference.hpp38 template <class T> struct remove_reference{ typedef typename boost::detail::remove_rvalue_ref<T>::t… struct
39 template <class T> struct remove_reference<T&>{ typedef T type; }; argument
46 template <class T> struct remove_reference<T&const>{ typedef T type; }; struct
47 template <class T> struct remove_reference<T&volatile>{ typedef T type; }; argument
48 template <class T> struct remove_reference<T&const volatile>{ typedef T type; }; struct
/third_party/boost/libs/align/test/
Dalignment_of_test.cpp14 struct remove_reference { struct
19 struct remove_reference<T&> { argument
25 struct remove_reference<T&&> { struct
26 typedef T type;
/third_party/boost/boost/move/detail/
Dunique_ptr_meta_utils.hpp100 struct remove_reference struct
102 typedef T type;
106 struct remove_reference<T&> struct
108 typedef T type;
114 struct remove_reference<T&&> struct
116 typedef T type;
122 struct remove_reference< rv<T> > struct
124 typedef T type;
128 struct remove_reference< rv<T> &> struct
130 typedef T type;
[all …]
Dmeta_utils.hpp92 struct remove_reference struct
94 typedef T type;
98 struct remove_reference<T&> struct
100 typedef T type;
106 struct remove_reference<T&&> struct
108 typedef T type;
114 struct remove_reference< rv<T> > struct
116 typedef T type;
120 struct remove_reference< rv<T> &> struct
122 typedef T type;
[all …]
/third_party/boost/boost/interprocess/detail/
Dtype_traits.hpp33 struct remove_reference struct
35 typedef T type;
39 struct remove_reference<T&> struct
41 typedef T type;
/third_party/boost/boost/hana/
Dtraits.hpp149 constexpr auto remove_reference = metafunction<std::remove_reference>; variable
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp149 constexpr auto remove_reference = metafunction<std::remove_reference>; variable
/third_party/boost/boost/callable_traits/detail/
Ddefault_callable_traits.hpp96 using remove_reference = error_t; typedef
/third_party/boost/boost/thread/detail/
Dmove.hpp312 struct remove_reference : boost::remove_reference<Tp> {}; struct