Minor syntax corrections.

This commit is contained in:
Stephen Anthony 2024-04-04 14:25:47 -02:30
parent 98b2b9b1c3
commit 09be43c506
1 changed files with 15 additions and 15 deletions

View File

@ -63,8 +63,8 @@ class StreamReader : public Serializable
return static_cast<bool>(myFile); return static_cast<bool>(myFile);
} }
bool isValid() { bool isValid() const {
return (myFileSize > 0) ? true:false; return myFileSize > 0;
} }
void blankPartialLines(bool index) { void blankPartialLines(bool index) {