diff options
author | Michi Henning <michi@zeroc.com> | 2005-11-18 18:43:44 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-11-18 18:43:44 +0000 |
commit | 54d3ff97de68d55587f42561a091b1f029f3afab (patch) | |
tree | 93858e47243f686389a2e70b94fac62febac0042 /cpp/src | |
parent | Fix to transmit the message from the process pipe to the server and (diff) | |
download | ice-54d3ff97de68d55587f42561a091b1f029f3afab.tar.bz2 ice-54d3ff97de68d55587f42561a091b1f029f3afab.tar.xz ice-54d3ff97de68d55587f42561a091b1f029f3afab.zip |
Fixed http://www.zeroc.com/vbulletin/showthread.php?t=1867
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | cpp/src/Slice/CsUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Slice/CsUtil.cpp b/cpp/src/Slice/CsUtil.cpp index c15c03ea2d6..b7535d70b40 100755 --- a/cpp/src/Slice/CsUtil.cpp +++ b/cpp/src/Slice/CsUtil.cpp @@ -717,10 +717,10 @@ Slice::CsGenerator::writeSequenceMarshalUnmarshalCode(Output& out, out << fixId(seq->scoped()) << "(szx__)"; } out << ';'; - out << nl << "for(int i__ = 0; i__ < szx__; ++i__)"; + out << nl << "for(int ix__ = 0; ix__ < szx__; ++ix__)"; out << sb; out << nl << "IceInternal.SequencePatcher spx = new IceInternal.SequencePatcher(" - << param << ", " << "typeof(" << typeS << "), i__);"; + << param << ", " << "typeof(" << typeS << "), ix__);"; out << nl << stream << ".readObject("; if(streamingAPI) { |