summaryrefslogtreecommitdiff
path: root/boost/spirit/home/classic/phoenix/composite.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/classic/phoenix/composite.hpp')
-rw-r--r--boost/spirit/home/classic/phoenix/composite.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/boost/spirit/home/classic/phoenix/composite.hpp b/boost/spirit/home/classic/phoenix/composite.hpp
index 3fed61de30..30bacbc735 100644
--- a/boost/spirit/home/classic/phoenix/composite.hpp
+++ b/boost/spirit/home/classic/phoenix/composite.hpp
@@ -1374,13 +1374,13 @@ namespace impl {
<OperationT, actor<BaseT>, B>::type type;
static type
- construct(actor<BaseT> const& _0, B const& _1)
+ construct(actor<BaseT> const& _0_, B const& _1_)
{
typedef typename make_composite
<OperationT, actor<BaseT>, B>::composite_type
ret_t;
- return ret_t(OperationT(), _0, as_actor<B>::convert(_1));
+ return ret_t(OperationT(), _0_, as_actor<B>::convert(_1_));
}
};
@@ -1392,13 +1392,13 @@ namespace impl {
<OperationT, A, actor<BaseT> >::type type;
static type
- construct(A const& _0, actor<BaseT> const& _1)
+ construct(A const& _0_, actor<BaseT> const& _1_)
{
typedef typename make_composite
<OperationT, A, actor<BaseT> >::composite_type
ret_t;
- return ret_t(OperationT(), as_actor<A>::convert(_0), _1);
+ return ret_t(OperationT(), as_actor<A>::convert(_0_), _1_);
}
};
@@ -1410,13 +1410,13 @@ namespace impl {
<OperationT, actor<BaseA>, actor<BaseB> >::type type;
static type
- construct(actor<BaseA> const& _0, actor<BaseB> const& _1)
+ construct(actor<BaseA> const& _0_, actor<BaseB> const& _1_)
{
typedef typename make_composite
<OperationT, actor<BaseA>, actor<BaseB> >::composite_type
ret_t;
- return ret_t(OperationT(), _0, _1);
+ return ret_t(OperationT(), _0_, _1_);
}
};