diff options
author | Jose <jose@zeroc.com> | 2017-03-07 22:18:06 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-07 22:18:06 +0100 |
commit | bf0bc3a4972c73871b289b298786ff99b565ea4f (patch) | |
tree | 98c260e6eebefddbfaab8fbbd4e825a127b14f4e /cpp | |
parent | Fixed (ICE-7649) - Bogus generated code for csharp marshalled-result (diff) | |
download | ice-bf0bc3a4972c73871b289b298786ff99b565ea4f.tar.bz2 ice-bf0bc3a4972c73871b289b298786ff99b565ea4f.tar.xz ice-bf0bc3a4972c73871b289b298786ff99b565ea4f.zip |
Fixed (ICE-7651) - bogus xml comment in CSharp generated code
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/slice2cs/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index 23e6f4bcd87..dd40601c518 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1991,7 +1991,7 @@ Slice::CsVisitor::writeDocCommentParam(const OperationPtr& p, ParamDir paramType j = i++; while(j != remarksLines.end()) { - string::size_type endpos = j->find('>'); + string::size_type endpos = j->find("</param>"); if(endpos == string::npos) { i = j; |