diff options
author | Michi Henning <michi@zeroc.com> | 2007-10-23 14:04:08 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-10-23 14:04:08 +1000 |
commit | 3fe0548b6e8a59b6783a6a5310a2f90961d6e683 (patch) | |
tree | cc7b69fcaaedb157bc7c92e566c1f88977355664 /cpp/src/slice2cpp/Gen.cpp | |
parent | Updated VB demos to be inline with other demos (diff) | |
download | ice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.tar.bz2 ice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.tar.xz ice-3fe0548b6e8a59b6783a6a5310a2f90961d6e683.zip |
Fixed unescaped keyword bug.
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rwxr-xr-x | 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 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; |