/usr/include/boost/parameter/aux_/preprocessor
NameSizeModeActions
impl/-0755rm
binary_seq_for_each.hpp569500644editdlrm
binary_seq_for_each_inc.hpp620430644editdlrm
binary_seq_to_args.hpp26720644editdlrm
convert_binary_seq.hpp20000644editdlrm
flatten.hpp3660644editdlrm
for_each.hpp3690644editdlrm
for_each_pred.hpp299420644editdlrm
inc_binary_seq.hpp29170644editdlrm
is_binary.hpp10360644editdlrm
is_nullary.hpp10460644editdlrm
no_perfect_forwarding_begin.hpp82800644editdlrm
no_perfect_forwarding_end.hpp9180644editdlrm
nullptr.hpp4940644editdlrm
overloads.hpp28860644editdlrm
qualifier.hpp28780644editdlrm
seq_enum.hpp8800644editdlrm
seq_merge.hpp550030644editdlrm
Edit: /usr/include/boost/parameter/aux_/preprocessor/seq_enum.hpp (880B)
// Copyright David Abrahams 2005. // 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_PREPROCESSOR_SEQ_ENUM_HPP #define BOOST_PARAMETER_AUX_PREPROCESSOR_SEQ_ENUM_HPP #include #include #include #if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) #include // Temporary version of BOOST_PP_SEQ_ENUM // until Paul M. integrates the workaround. #define BOOST_PARAMETER_SEQ_ENUM_I(size, seq) \ BOOST_PP_CAT(BOOST_PP_SEQ_ENUM_, size) seq #define BOOST_PARAMETER_SEQ_ENUM(seq) \ BOOST_PARAMETER_SEQ_ENUM_I(BOOST_PP_SEQ_SIZE(seq), seq) #else #define BOOST_PARAMETER_SEQ_ENUM(seq) BOOST_PP_SEQ_ENUM(seq) #endif #endif // include guard