mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
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;
|
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;
|
boost::system::error_code ec;
|
||||||
|
|
||||||
const fs::path d = *it;
|
const fs::path d = *it;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user