mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-07 04:00:37 -06:00
Move to use postfix increment only
This commit is contained in:
@@ -86,7 +86,7 @@ LabelParser::LabelParser(std::filesystem::path fileName,
|
||||
const Dictionary specsOfInterestDict = typeDict.value<Dictionary>(KeySpecs);
|
||||
|
||||
_specsOfInterest.resize(specsOfInterestDict.size());
|
||||
for (size_t n = 0; n < _specsOfInterest.size(); ++n) {
|
||||
for (size_t n = 0; n < _specsOfInterest.size(); n++) {
|
||||
const std::string key = std::to_string(n + 1);
|
||||
if (specsOfInterestDict.hasValue<std::string>(key)) {
|
||||
std::string readMe = specsOfInterestDict.value<std::string>(key);
|
||||
|
||||
Reference in New Issue
Block a user