summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cs/Gen.cpp
diff options
context:
space:
mode:
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 fb4cda4218b..1f68daa241a 100755
--- a/cpp/src/slice2cs/Gen.cpp
+++ b/cpp/src/slice2cs/Gen.cpp
@@ -4150,9 +4150,9 @@ Slice::Gen::DelegateDVisitor::visitClassDefStart(const ClassDefPtr& p)
// Set out parameters
//
- for(vector<string>::iterator q = outHolders.begin(); q != outHolders.end(); ++q)
+ for(vector<string>::iterator s = outHolders.begin(); s != outHolders.end(); ++s)
{
- _out << nl << (*q) << " = " << (*q) << "Holder__;";
+ _out << nl << (*s) << " = " << (*s) << "Holder__;";
}
if(ret)