Move to use postfix increment only

This commit is contained in:
Alexander Bock
2025-09-07 16:56:59 +02:00
parent 0e72a2cb0d
commit ff72e47f7b
49 changed files with 94 additions and 94 deletions
@@ -416,7 +416,7 @@ void RenderableConstellationLines::loadData() {
dim >> constellationLine.numV;
// We can now read the vertices data:
for (int l = 0; l < constellationLine.numV; ++l) {
for (int l = 0; l < constellationLine.numV; l++) {
ghoul::getline(file, line);
if (line.substr(0, 1) == "}") {
break;