Don't post-increment stl iterators

This commit is contained in:
Yonas Habteab 2022-08-26 16:35:52 +02:00
parent 8bb0b857d8
commit 5a67ddea76
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ void ConfigObjectUtility::RepairPackage(const String& package)
String foundActiveStage;
for (fs::recursive_directory_iterator it(path); it != end; it++) {
for (fs::recursive_directory_iterator it(path); it != end; ++it) {
boost::system::error_code ec;
const fs::path d = *it;