/usr/include/boost/mpl/aux_/preprocessed/msvc70
NameSizeModeActions
advance_backward.hpp22060644editdlrm
advance_forward.hpp21860644editdlrm
and.hpp13740644editdlrm
apply.hpp25150644editdlrm
apply_fwd.hpp8290644editdlrm
apply_wrap.hpp20550644editdlrm
arg.hpp28930644editdlrm
basic_bind.hpp73570644editdlrm
bind.hpp108690644editdlrm
bind_fwd.hpp8220644editdlrm
bitand.hpp31390644editdlrm
bitor.hpp31160644editdlrm
bitxor.hpp31390644editdlrm
deque.hpp147140644editdlrm
divides.hpp31240644editdlrm
equal_to.hpp23340644editdlrm
fold_impl.hpp57580644editdlrm
full_lambda.hpp112150644editdlrm
greater.hpp23180644editdlrm
greater_equal.hpp24090644editdlrm
inherit.hpp32650644editdlrm
iter_fold_if_impl.hpp42740644editdlrm
iter_fold_impl.hpp55970644editdlrm
lambda_no_ctps.hpp64770644editdlrm
less.hpp22730644editdlrm
less_equal.hpp23640644editdlrm
list.hpp146200644editdlrm
list_c.hpp131290644editdlrm
map.hpp145470644editdlrm
minus.hpp30780644editdlrm
modulus.hpp25360644editdlrm
not_equal_to.hpp23940644editdlrm
or.hpp13750644editdlrm
placeholders.hpp22110644editdlrm
plus.hpp30550644editdlrm
quote.hpp22360644editdlrm
reverse_fold_impl.hpp88700644editdlrm
reverse_iter_fold_impl.hpp82500644editdlrm
set.hpp145470644editdlrm
set_c.hpp130560644editdlrm
shift_left.hpp25540644editdlrm
shift_right.hpp25710644editdlrm
template_arity.hpp8330644editdlrm
times.hpp30780644editdlrm
unpack_args.hpp22960644editdlrm
vector.hpp147660644editdlrm
vector_c.hpp139050644editdlrm
Edit: /usr/include/boost/mpl/aux_/preprocessed/msvc70/less.hpp (2273B)
// 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 "boost/mpl/less.hpp" header // -- DO NOT modify by hand! namespace boost { namespace mpl { template< typename Tag1 , typename Tag2 , BOOST_MPL_AUX_NTTP_DECL(int, tag1_) = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag1)::value , BOOST_MPL_AUX_NTTP_DECL(int, tag2_) = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag2)::value > struct less_impl : if_c< ( tag1_ > tag2_ ) , aux::cast2nd_impl< less_impl< Tag1,Tag1 >,Tag1, Tag2 > , aux::cast1st_impl< less_impl< Tag2,Tag2 >,Tag1, Tag2 > >::type { }; /// for Digital Mars C++/compilers with no CTPS/TTP support template<> struct less_impl< na,na > { template< typename U1, typename U2 > struct apply { typedef apply type; BOOST_STATIC_CONSTANT(int, value = 0); }; }; template<> struct less_impl< na,integral_c_tag > { template< typename U1, typename U2 > struct apply { typedef apply type; BOOST_STATIC_CONSTANT(int, value = 0); }; }; template<> struct less_impl< integral_c_tag,na > { template< typename U1, typename U2 > struct apply { typedef apply type; BOOST_STATIC_CONSTANT(int, value = 0); }; }; template< typename T > struct less_tag : tag< T,na > { }; template< typename BOOST_MPL_AUX_NA_PARAM(N1) , typename BOOST_MPL_AUX_NA_PARAM(N2) > struct less : aux::msvc_eti_base< typename apply_wrap2< less_impl< typename less_tag::type , typename less_tag::type > , N1 , N2 >::type >::type { BOOST_MPL_AUX_LAMBDA_SUPPORT(2, less, (N1, N2)) }; BOOST_MPL_AUX_NA_SPEC2(2, 2, less) }} namespace boost { namespace mpl { template<> struct less_impl< integral_c_tag,integral_c_tag > { template< typename N1, typename N2 > struct apply { BOOST_STATIC_CONSTANT(bool, value = ( BOOST_MPL_AUX_VALUE_WKND(N2)::value > BOOST_MPL_AUX_VALUE_WKND(N1)::value ) ); typedef bool_ type; }; }; }}