2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-14 13:02:10 +00:00

[phoenix] fixing scope module for msvc 7.1

[SVN r72485]
This commit is contained in:
Thomas Heller
2011-06-08 12:45:54 +00:00
parent 2687bd7774
commit 1b4464b19b
2 changed files with 28 additions and 6 deletions

View File

@@ -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()>
)
>
>()
>
>
>
>

View File

@@ -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>