diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-01 00:45:51 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-01 00:45:51 +0000 |
commit | 5708cc172e28f36986d8f3a11d53b45236dd5782 (patch) | |
tree | 7a9336e1b96baf0dd6cb4d692666feac7e386e8f /cpp/src/slice2cpp | |
parent | fixing compiler errors (diff) | |
download | ice-5708cc172e28f36986d8f3a11d53b45236dd5782.tar.bz2 ice-5708cc172e28f36986d8f3a11d53b45236dd5782.tar.xz ice-5708cc172e28f36986d8f3a11d53b45236dd5782.zip |
addressing
Diffstat (limited to 'cpp/src/slice2cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 340c3a73edc..b5728046317 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -1103,12 +1103,12 @@ Slice::Gen::DelegateMVisitor::visitOperation(const OperationPtr& p) H << sp << nl << "virtual " << retS << ' ' << name << params << ';'; C << sp << nl << retS << nl << "IceDelegateM" << scoped << paramsDecl; C << sb; - C << nl << "bool __sendRef = false;"; + C << nl << "bool __sendProxy = false;"; C << nl << "while (true)"; C << sb; C << nl << "try"; C << sb; - C << nl << "::IceInternal::Outgoing __out(__emitter, __reference, __sendRef, \"" << name << "\", __context);"; + C << nl << "::IceInternal::Outgoing __out(__emitter, __reference, __sendProxy, \"" << name << "\", __context);"; if (ret || !outParams.empty() || !throws.empty()) { C << nl << "::IceInternal::BasicStream* __is = __out.is();"; @@ -1167,7 +1167,7 @@ Slice::Gen::DelegateMVisitor::visitOperation(const OperationPtr& p) C << eb; C << nl << "catch (const ::Ice::ProxyRequested&)"; C << sb; - C << nl << "__sendRef = true;"; + C << nl << "__sendProxy = true;"; C << eb; C << eb; C << eb; |