Searched defs:unvoid_ref (Results 1 – 1 of 1) sorted by relevance
524 template <typename T> struct unvoid_ref : add_lvalue_reference<T>{}; struct525 template <> struct unvoid_ref<void> { typedef unvoid_ref & type; }; argument526 template <> struct unvoid_ref<const void> { typedef unvoid_ref & type; }; argument527 template <> struct unvoid_ref<volatile void> { typedef unvoid_ref & type; }; struct528 template <> struct unvoid_ref<const volatile void> { typedef unvoid_ref & type; }; argument