Merge develop into main (#381)

Various fixes and improvements
This commit is contained in:
Ken Van Hoeylandt
2025-10-22 23:15:33 +02:00
committed by GitHub
parent 9c5a427a34
commit e9384e0c11
8 changed files with 24 additions and 8 deletions
+2 -1
View File
@@ -381,8 +381,9 @@ bool readLines(const std::string& filePath, bool stripNewLine, std::function<voi
callback(line);
}
bool success = feof(file);
fclose(file);
return true;
return success;
}
}