summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/CsUtil.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-11-18 18:43:44 +0000
committerMichi Henning <michi@zeroc.com>2005-11-18 18:43:44 +0000
commit54d3ff97de68d55587f42561a091b1f029f3afab (patch)
tree93858e47243f686389a2e70b94fac62febac0042 /cpp/src/Slice/CsUtil.cpp
parentFix to transmit the message from the process pipe to the server and (diff)
downloadice-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/Slice/CsUtil.cpp')
-rwxr-xr-xcpp/src/Slice/CsUtil.cpp4
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)
{