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

boost/phoenix/statement/for.hpp fix shadow do_

This commit is contained in:
John Fletcher
2014-02-07 11:33:01 +00:00
parent d5f4332f73
commit f15f99cf86

View File

@@ -39,12 +39,12 @@ namespace boost { namespace phoenix
Init const& init
, Cond const& cond
, Step const& step
, Do const& do_
, Do const& do_it
, Context const & ctx
) const
{
for(boost::phoenix::eval(init, ctx); boost::phoenix::eval(cond, ctx); boost::phoenix::eval(step, ctx))
boost::phoenix::eval(do_, ctx);
boost::phoenix::eval(do_it, ctx);
}
};