mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-03 17:30:04 -05:00
Move to use postfix increment only
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user