Searched defs:add_reference (Results 1 – 6 of 6) sorted by relevance
40 template <class T> struct add_reference struct42 typedef typename boost::detail::add_reference_impl<T>::type type;44 template <class T> struct add_reference<T&> struct46 typedef T& type;50 template <> struct add_reference<void> { typedef void type; }; struct52 template <> struct add_reference<const void> { typedef const void type; }; struct53 template <> struct add_reference<const volatile void> { typedef const volatile void type; }; struct54 template <> struct add_reference<volatile void> { typedef volatile void type; }; struct
69 struct add_reference struct71 typedef T& type;75 struct add_reference<T&> struct77 typedef T& type;81 struct add_reference<void> struct83 typedef nat &type;87 struct add_reference<const void> struct89 typedef const nat &type;
38 struct add_reference { struct39 typedef T& type;43 struct add_reference<void> { struct44 typedef void type;48 struct add_reference<const void> { struct49 typedef const void type;
26 template<class T> using add_reference = T&; typedef
39 add_reference (refcounted_string_list_ty *rslp) in add_reference() function
365 struct add_reference : add_lvalue_reference<T> struct