1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED
- #define BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED
- namespace boost
- {
- namespace mp11
- {
- namespace detail
- {
- template<class... T> struct mp_void_impl
- {
- using type = void;
- };
- }
- template<class... T> using mp_void = typename detail::mp_void_impl<T...>::type;
- }
- }
- #endif
|