summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cs/Gen.cpp
diff options
context:
space:
mode:
authorZeroC Staff <git@zeroc.com>2007-11-21 22:33:27 -0500
committerZeroC Staff <git@zeroc.com>2007-11-21 22:33:27 -0500
commitf419abacd263d1f7e648e5f49c72f999424ff03f (patch)
tree0c1da545305db95281266f23f0b39c3f3584c6cd /cpp/src/slice2cs/Gen.cpp
parentRefactored server-properties access/retrieval from IceGrid admin client (diff)
downloadice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.bz2
ice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.xz
ice-f419abacd263d1f7e648e5f49c72f999424ff03f.zip
Fixed VC6 build failures
Diffstat (limited to 'cpp/src/slice2cs/Gen.cpp')
-rwxr-xr-xcpp/src/slice2cs/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp
index d705191ed2b..dc23423563c 100755
--- a/cpp/src/slice2cs/Gen.cpp
+++ b/cpp/src/slice2cs/Gen.cpp
@@ -4180,9 +4180,9 @@ Slice::Gen::DelegateDVisitor::visitClassDefStart(const ClassDefPtr& p)
_out << sb;
_out << nl << "direct__.destroy();";
_out << eb;
- for(ExceptionList::const_iterator i = throws.begin(); i != throws.end(); ++i)
+ for(ExceptionList::const_iterator j = throws.begin(); j != throws.end(); ++j)
{
- _out << nl << "catch(" << fixId((*i)->scoped()) << " ex__)";
+ _out << nl << "catch(" << fixId((*j)->scoped()) << " ex__)";
_out << sb;
_out << nl << "throw ex__;";
_out << eb;