Rebase fix and move reused fileIns lambdas into cpp static functions (since effectively private)

This commit is contained in:
James Alan Nguyen 2022-05-08 14:50:18 +10:00
parent 7cd0d728b2
commit 7ae72f0fe4
3 changed files with 52 additions and 162 deletions

View file

@ -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;
}