Miscellaneous

This commit is contained in:
Alexey Milovidov 2021-01-05 23:32:42 +03:00
parent 5573c3b61e
commit 8ecbfe701c

View File

@ -862,9 +862,8 @@ private:
if (next_separator < in.buffer().end()
&& *next_separator == '\n')
{
// Found ';\n', append it to the query text and try to
// parse.
next_separator++;
// Found ';\n', append it to the query text and try to parse.
++next_separator;
text.append(in.position(), next_separator - in.position());
in.position() = next_separator;
break;