diff options
author | Marc Laukien <marc@zeroc.com> | 2002-12-30 05:19:03 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-12-30 05:19:03 +0000 |
commit | a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc (patch) | |
tree | 22552b21c83ead223a3c2f4f5a409d0196358135 /cpp/src/slice2cpp | |
parent | fixes (diff) | |
download | ice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.tar.bz2 ice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.tar.xz ice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.zip |
fixes
Diffstat (limited to 'cpp/src/slice2cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 7deaddb0e17..af144af083f 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -1658,7 +1658,7 @@ Slice::Gen::DelegateMVisitor::visitOperation(const OperationPtr& p) C << sp << nl << retS << nl << "IceDelegateM" << scoped << paramsDecl; C << sb; C << nl << "static const ::std::string __operation(\"" << p->name() << "\");"; - C << nl << "::IceInternal::Outgoing __out(__connection, __reference, __operation, " + C << nl << "::IceInternal::Outgoing __out(__connection.get(), __reference.get(), __operation, " << "static_cast< ::Ice::OperationMode>(" << p->mode() << "), __context);"; if(ret || !outParams.empty() || !throws.empty()) { |