mirror of https://github.com/Icinga/icinga2.git
Don't post-increment stl iterators
This commit is contained in:
parent
8bb0b857d8
commit
5a67ddea76
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue