/usr/include/boost/mp11/detail
NameSizeModeActions
config.hpp32740644editdlrm
mpl_common.hpp28320644editdlrm
mp_append.hpp97610644editdlrm
mp_copy_if.hpp13680644editdlrm
mp_count.hpp31280644editdlrm
mp_fold.hpp19340644editdlrm
mp_is_list.hpp8000644editdlrm
mp_list.hpp4910644editdlrm
mp_map_find.hpp10520644editdlrm
mp_min_element.hpp13870644editdlrm
mp_plus.hpp27550644editdlrm
mp_remove_if.hpp13880644editdlrm
mp_void.hpp6420644editdlrm
mp_with_index.hpp153580644editdlrm
Edit: /usr/include/boost/mp11/detail/mp_void.hpp (642B)
#ifndef BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED #define BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED // Copyright 2015-2017 Peter Dimov. // // Distributed under the Boost Software License, Version 1.0. // // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt namespace boost { namespace mp11 { // mp_void namespace detail { template struct mp_void_impl { using type = void; }; } // namespace detail template using mp_void = typename detail::mp_void_impl::type; } // namespace mp11 } // namespace boost #endif // #ifndef BOOST_MP11_DETAIL_MP_VOID_HPP_INCLUDED