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

@@ -142,7 +142,7 @@ SizeMappingComponent::SizeMappingComponent(const ghoul::Dictionary& dictionary)
if (p.parameterOptions.has_value()) {
std::vector<std::string> opts = *p.parameterOptions;
for (size_t i = 0; i < opts.size(); ++i) {
for (size_t i = 0; i < opts.size(); i++) {
// Note that options are added in order
parameterOption.addOption(static_cast<int>(i), opts[i]);