summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2007-10-23 14:04:08 +1000
committerMichi Henning <michi@zeroc.com>2007-10-23 14:04:08 +1000
commit3fe0548b6e8a59b6783a6a5310a2f90961d6e683 (patch)
treecc7b69fcaaedb157bc7c92e566c1f88977355664 /cpp/src/slice2cpp/Gen.cpp
parentUpdated VB demos to be inline with other demos (diff)
downloadice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.tar.bz2
ice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.tar.xz
ice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.zip
Fixed unescaped keyword bug.
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rwxr-xr-xcpp/src/slice2cpp/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index c1dbbee6d2b..ba7db40f1a4 100755
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -3808,7 +3808,7 @@ Slice::Gen::ObjectVisitor::visitClassDefEnd(const ClassDefPtr& p)
C << nl << "*p = " << scope << name << "Ptr::dynamicCast(v);";
C << nl << "if(v && !*p)";
C << sb;
- C << nl << "IceInternal::Ex::throwUOE(" << scope << name << "::ice_staticId(), v->ice_id());";
+ C << nl << "IceInternal::Ex::throwUOE(" << scoped << "::ice_staticId(), v->ice_id());";
C << eb;
C << eb;