mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Wrong size of nl
--HG-- branch : develop
This commit is contained in:
parent
b7c008c014
commit
369a121aa1
1 changed files with 1 additions and 1 deletions
|
@ -698,7 +698,7 @@ void cleanComment(const std::string & filename)
|
||||||
ucstring toAdd = text.substr(last, size);
|
ucstring toAdd = text.substr(last, size);
|
||||||
newText += toAdd;
|
newText += toAdd;
|
||||||
ucstring::size_type commentEnd = text.find(ucstring("*/"), commentBegin);
|
ucstring::size_type commentEnd = text.find(ucstring("*/"), commentBegin);
|
||||||
if (commentEnd != ucstring::npos) { commentEnd += 4; }
|
if (commentEnd != ucstring::npos) { commentEnd += 2 + nl.size(); }
|
||||||
last = commentEnd;
|
last = commentEnd;
|
||||||
++nbOldValue;
|
++nbOldValue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue