Shorten a couple of lines

This commit is contained in:
a3d4
2020-05-21 17:38:47 +02:00
parent 38e65a909a
commit 5870253b00
4 changed files with 71 additions and 15 deletions
+4 -1
View File
@@ -96,7 +96,10 @@ void DocStringParser::parse(string const& _docString, ErrorReporter& _errorRepor
auto tagNameEndPos = firstWhitespaceOrNewline(tagPos, end);
if (tagNameEndPos == end)
{
m_errorReporter->docstringParsingError(9222_error, "End of tag " + string(tagPos, tagNameEndPos) + " not found");
m_errorReporter->docstringParsingError(
9222_error,
"End of tag " + string(tagPos, tagNameEndPos) + " not found"
);
break;
}