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

View File

@@ -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);