Fix for carriage return in tsv

This commit is contained in:
avogar 2023-08-21 12:46:03 +00:00
parent 584bd57f5c
commit e590f15d3d

View File

@ -337,8 +337,10 @@ void TabSeparatedFormatReader::skipRow()
{
++istr.position();
if (!istr.eof() && *istr.position() == '\n')
{
++istr.position();
return;
return;
}
}
}
}