summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-29 21:02:37 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-29 21:02:37 +0000
commitcc0ddc7270b434a0ba01f918477d1f46f9324ec2 (patch)
tree718f0c457eedadea0a439bfbc42bf81f6b5122f0 /cpp/src/slice2cpp/Gen.cpp
parentlots of fixes (diff)
downloadice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.tar.bz2
ice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.tar.xz
ice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.zip
fixes
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index b9a43894ccb..f2e32296300 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -1741,6 +1741,8 @@ Slice::Gen::DelegateDVisitor::visitOperation(const OperationPtr& p)
C << nl << "if(!__servant)";
C << sb;
C << nl << "::Ice::OperationNotExistException __opEx(__FILE__, __LINE__);";
+ C << nl << "__opEx.id = __current.id;";
+ C << nl << "__opEx.facet = __current.facet;";
C << nl << "__opEx.operation = __current.operation;";
C << nl << "throw __opEx;";
C << eb;