Back to home page

EIC code displayed by LXR

 
 

    


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 //  Copyright 2015-2017 Peter Dimov.
0005 //
0006 //  Distributed under the Boost Software License, Version 1.0.
0007 //
0008 //  See accompanying file LICENSE_1_0.txt or copy at
0009 //  http://www.boost.org/LICENSE_1_0.txt
0010 
0011 namespace boost
0012 {
0013 namespace mp11
0014 {
0015 
0016 // mp_void<T...>
0017 namespace detail
0018 {
0019 
0020 template<class... T> struct mp_void_impl
0021 {
0022     using type = void;
0023 };
0024 
0025 } // namespace detail
0026 
0027 template<class... T> using mp_void = typename detail::mp_void_impl<T...>::type;
0028 
0029 } // namespace mp11
0030 } // namespace boost
0031 
0032 #endif // #ifndef BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED