diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-06-01 11:13:23 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-06-01 11:13:23 -0230 |
commit | 0c876c010d1c9a4be7dca92bbad14c58146201b9 (patch) | |
tree | 8a599b43581a6d3ddcd76307261b72dd5f413c4f /cpp/src/slice2java/Gen.cpp | |
parent | Bug 2754 - read properties from Windows registry (diff) | |
download | ice-0c876c010d1c9a4be7dca92bbad14c58146201b9.tar.bz2 ice-0c876c010d1c9a4be7dca92bbad14c58146201b9.tar.xz ice-0c876c010d1c9a4be7dca92bbad14c58146201b9.zip |
Fixed VC60 compiler error
Diffstat (limited to 'cpp/src/slice2java/Gen.cpp')
-rw-r--r-- | cpp/src/slice2java/Gen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp index 4292b71d9d7..f17835c1842 100644 --- a/cpp/src/slice2java/Gen.cpp +++ b/cpp/src/slice2java/Gen.cpp @@ -1480,15 +1480,15 @@ Slice::JavaVisitor::writeDocCommentParam(Output& out, const OperationPtr& p, Par // ParamDeclList tmp = p->parameters(); vector<string> params; - for(ParamDeclList::const_iterator i = tmp.begin(); i != tmp.end(); ++i) + for(ParamDeclList::const_iterator q = tmp.begin(); q != tmp.end(); ++q) { - if((*i)->isOutParam() && paramType == OutParam) + if((*q)->isOutParam() && paramType == OutParam) { - params.push_back((*i)->name()); + params.push_back((*q)->name()); } - else if(!(*i)->isOutParam() && paramType == InParam) + else if(!(*q)->isOutParam() && paramType == InParam) { - params.push_back((*i)->name()); + params.push_back((*q)->name()); } } |