/usr/include/boost/mpl/aux_/preprocessed/bcc
NameSizeModeActions
advance_backward.hpp22020644editdlrm
advance_forward.hpp21820644editdlrm
and.hpp12580644editdlrm
apply.hpp27450644editdlrm
apply_fwd.hpp9730644editdlrm
apply_wrap.hpp70780644editdlrm
arg.hpp26900644editdlrm
basic_bind.hpp71180644editdlrm
bind.hpp104200644editdlrm
bind_fwd.hpp8230644editdlrm
bitand.hpp32090644editdlrm
bitor.hpp31790644editdlrm
bitxor.hpp32090644editdlrm
deque.hpp97240644editdlrm
divides.hpp31920644editdlrm
equal_to.hpp20980644editdlrm
fold_impl.hpp43500644editdlrm
full_lambda.hpp115060644editdlrm
greater.hpp20810644editdlrm
greater_equal.hpp21720644editdlrm
inherit.hpp27500644editdlrm
iter_fold_if_impl.hpp42700644editdlrm
iter_fold_impl.hpp41540644editdlrm
lambda_no_ctps.hpp64730644editdlrm
less.hpp20360644editdlrm
less_equal.hpp21270644editdlrm
list.hpp96170644editdlrm
list_c.hpp107180644editdlrm
map.hpp95520644editdlrm
minus.hpp31320644editdlrm
modulus.hpp22940644editdlrm
not_equal_to.hpp21570644editdlrm
or.hpp12590644editdlrm
placeholders.hpp22120644editdlrm
plus.hpp31020644editdlrm
quote.hpp23460644editdlrm
reverse_fold_impl.hpp88660644editdlrm
reverse_iter_fold_impl.hpp82460644editdlrm
set.hpp95520644editdlrm
set_c.hpp106530644editdlrm
shift_left.hpp22530644editdlrm
shift_right.hpp22680644editdlrm
template_arity.hpp7630644editdlrm
times.hpp31320644editdlrm
unpack_args.hpp19860644editdlrm
vector.hpp97470644editdlrm
vector_c.hpp122380644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/bcc/or.hpp (1259B)
// Copyright Aleksey Gurtovoy 2000-2004 // // 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) // // *Preprocessed* version of the main "or.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { namespace aux { template< bool C_, typename T1, typename T2, typename T3, typename T4 > struct or_impl : true_ { }; template< typename T1, typename T2, typename T3, typename T4 > struct or_impl< false,T1,T2,T3,T4 > : or_impl< BOOST_MPL_AUX_NESTED_TYPE_WKND(T1)::value , T2, T3, T4 , false_ > { }; template<> struct or_impl< false , false_, false_, false_, false_ > : false_ { }; } // namespace aux template< typename BOOST_MPL_AUX_NA_PARAM(T1) , typename BOOST_MPL_AUX_NA_PARAM(T2) , typename T3 = false_, typename T4 = false_, typename T5 = false_ > struct or_ : aux::or_impl< BOOST_MPL_AUX_NESTED_TYPE_WKND(T1)::value , T2, T3, T4, T5 > { BOOST_MPL_AUX_LAMBDA_SUPPORT( 5 , or_ , ( T1, T2, T3, T4, T5) ) }; BOOST_MPL_AUX_NA_SPEC2( 2 , 5 , or_ ) }}