Rebase fix and move reused fileIns lambdas into cpp static functions (since effectively private)
This commit is contained in:
parent
7cd0d728b2
commit
7ae72f0fe4
3 changed files with 52 additions and 162 deletions
|
|
@ -170,7 +170,7 @@ String SafeReader::readStringLine() {
|
|||
unsigned char c;
|
||||
if (isEOF()) throw EndOfFileException(this, len);
|
||||
|
||||
while (!isEOF() && (c = readC()) != 0) {
|
||||
while (!isEOF() && (c=readC())!=0) {
|
||||
if (c=='\r'||c=='\n') {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue