]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/spirit/home/classic/phoenix/composite.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / spirit / home / classic / phoenix / composite.hpp
index 3fed61de3042cd67bf1d101132d57a0eb8daacd9..30bacbc7355a51262e3ce0f30956ca106da12c88 100644 (file)
@@ -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_);
         }
     };