Skip to content

Commit

Permalink
[phoenix] fixing scope module for msvc 7.1
Browse files Browse the repository at this point in the history
[SVN r72485]
  • Loading branch information
sithhell committed Jun 8, 2011
1 parent 2687bd7 commit 1b4464b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
17 changes: 14 additions & 3 deletions include/boost/phoenix/scope/lambda.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,20 @@ namespace boost { namespace phoenix
, meta_grammar
>
, proto::fold<
proto::_value(proto::_child_c<0>)
, mpl::true_()
, mpl::and_<proto::_state, evaluator(proto::_, _context, int())>()
proto::call<proto::_value(proto::_child_c<0>)>
, proto::make<mpl::true_()>
, proto::make<
mpl::and_<
proto::_state
, proto::call<
evaluator(
proto::_
, _context
, proto::make<int()>
)
>
>()
>
>
>
>
Expand Down
17 changes: 14 additions & 3 deletions include/boost/phoenix/scope/let.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,20 @@ namespace boost { namespace phoenix
: proto::make<
mpl::and_<
proto::fold<
proto::_value(proto::_child_c<0>)
, mpl::true_()
, mpl::and_<proto::_state, evaluator(proto::_, _context, int())>()
proto::call<proto::_value(proto::_child_c<0>)>
, proto::make<mpl::true_()>
, proto::make<
mpl::and_<
proto::_state
, proto::call<
evaluator(
proto::_
, _context
, proto::make<int()>
)
>
>()
>
>
, evaluator(
proto::_child_c<2>
Expand Down

0 comments on commit 1b4464b

Please sign in to comment.