File indexing completed on 2025-01-18 09:30:40
0001 #ifndef BOOST_DESCRIBE_DETAIL_VOID_T_HPP_INCLUDED
0002 #define BOOST_DESCRIBE_DETAIL_VOID_T_HPP_INCLUDED
0003
0004
0005
0006
0007
0008 #include <boost/describe/detail/config.hpp>
0009
0010 #if defined(BOOST_DESCRIBE_CXX11)
0011
0012 namespace boost
0013 {
0014 namespace describe
0015 {
0016 namespace detail
0017 {
0018
0019 template<class...> struct make_void
0020 {
0021 using type = void;
0022 };
0023
0024 template<class... T> using void_t = typename make_void<T...>::type;
0025
0026 }
0027 }
0028 }
0029
0030 #endif
0031
0032 #endif