File indexing completed on 2025-01-30 09:46:51
0001 #ifndef BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED
0002 #define BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED
0003
0004
0005
0006
0007
0008
0009
0010
0011 namespace boost
0012 {
0013 namespace mp11
0014 {
0015
0016
0017 namespace detail
0018 {
0019
0020 template<class... T> struct mp_void_impl
0021 {
0022 using type = void;
0023 };
0024
0025 }
0026
0027 template<class... T> using mp_void = typename detail::mp_void_impl<T...>::type;
0028
0029 }
0030 }
0031
0032 #endif