Searched refs:unvoid (Results 1 – 1 of 1) sorted by relevance
27 template <typename T> struct unvoid { typedef T type; }; struct28 template <> struct unvoid<void> { struct type { }; }; struct29 template <> struct unvoid<const void> { struct type { }; }; argument388 #define BOOST_MOVE_UNVOIDCREF(T) const typename boost::move_detail::unvoid<T>::type&