Renamed File:eof to File:isEOF (closes issue #683.)

This commit is contained in:
Alex Szpakowski
2015-03-17 01:13:29 -03:00
parent 06ef263537
commit d982f02634
8 changed files with 38 additions and 38 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ bool DroppedFile::flush()
return fflush(file) == 0;
}
bool DroppedFile::eof()
bool DroppedFile::isEOF()
{
return file == nullptr || feof(file) != 0;
}