diff options
author | ZeroC Staff <git@zeroc.com> | 2007-11-21 22:33:27 -0500 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2007-11-21 22:33:27 -0500 |
commit | f419abacd263d1f7e648e5f49c72f999424ff03f (patch) | |
tree | 0c1da545305db95281266f23f0b39c3f3584c6cd /cpp/src/slice2cs/Gen.cpp | |
parent | Refactored server-properties access/retrieval from IceGrid admin client (diff) | |
download | ice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.bz2 ice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.xz ice-f419abacd263d1f7e648e5f49c72f999424ff03f.zip |
Fixed VC6 build failures
Diffstat (limited to 'cpp/src/slice2cs/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2cs/Gen.cpp | 4 |
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; |