/usr/include/boost/parameter/aux_/pack
Edit: /usr/include/boost/parameter/aux_/pack/make_items.hpp (1406B)
// Copyright David Abrahams, Daniel Wallin 2003.
// 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)
#ifndef BOOST_PARAMETER_AUX_PACK_MAKE_ITEMS_HPP
#define BOOST_PARAMETER_AUX_PACK_MAKE_ITEMS_HPP
#include
#include
#include
#if defined(BOOST_PARAMETER_CAN_USE_MP11)
#include
#include
#else
#include
#include
#include
#endif
namespace boost { namespace parameter { namespace aux {
// Creates a item typelist.
template
#if defined(BOOST_PARAMETER_CAN_USE_MP11)
using make_items = ::boost::mp11::mp_if<
::std::is_same
, ::boost::mp11::mp_identity< ::boost::parameter::void_>
, ::boost::parameter::aux::make_item
>;
#else
struct make_items
: ::boost::mpl::eval_if<
::boost::is_same
, ::boost::mpl::identity< ::boost::parameter::void_>
, ::boost::parameter::aux::make_item
>
{
};
#endif
}}} // namespace boost::parameter::aux
#endif // include guard