Home
last modified time | relevance | path

Searched defs:unwrap_reference (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/core/include/boost/core/
Dref.hpp276 template<typename T> struct unwrap_reference struct
278 typedef T type;
284 template<typename T> struct unwrap_reference< reference_wrapper<T> > struct
286 typedef T type;
291 template<typename T> struct unwrap_reference< reference_wrapper<T> const > struct
293 typedef T type;
296 template<typename T> struct unwrap_reference< reference_wrapper<T> volatile > struct
298 typedef T type;
301 template<typename T> struct unwrap_reference< reference_wrapper<T> const volatile > struct
303 typedef T type;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/util/
Dunwrap_reference.hpp46 struct unwrap_reference struct
48 typedef typename std::remove_reference<T>::type type;
52 struct unwrap_reference< std::reference_wrapper<T> > struct
54 typedef typename std::remove_reference<T>::type type;
58 struct unwrap_reference< boost::reference_wrapper<T> > struct
60 typedef typename boost::unwrap_reference<T>::type type;