summaryrefslogtreecommitdiff
path: root/boost/phoenix/statement/do_while.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/phoenix/statement/do_while.hpp')
-rw-r--r--boost/phoenix/statement/do_while.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/phoenix/statement/do_while.hpp b/boost/phoenix/statement/do_while.hpp
index abc10ba63f..9c155c6ad6 100644
--- a/boost/phoenix/statement/do_while.hpp
+++ b/boost/phoenix/statement/do_while.hpp
@@ -27,10 +27,10 @@ namespace boost { namespace phoenix
template <typename Cond, typename Do, typename Context>
result_type
- operator()(Cond const& cond, Do const& do_, Context & ctx) const
+ operator()(Cond const& cond, Do const& do_it, Context const & ctx) const
{
do
- boost::phoenix::eval(do_, ctx);
+ boost::phoenix::eval(do_it, ctx);
while (boost::phoenix::eval(cond, ctx));
}
};
@@ -43,8 +43,8 @@ namespace boost { namespace phoenix
template <typename Do>
struct do_while_gen
{
- do_while_gen(Do const& do_)
- : do_(do_) {}
+ do_while_gen(Do const& do_it)
+ : do_(do_it) {}
template <typename Cond>
typename expression::do_while<Cond, Do>::type const