diff --git a/src/wrench/job/CompoundJob.cpp b/src/wrench/job/CompoundJob.cpp old mode 100755 new mode 100644 index e010c65ee3..8d23f0eb15 --- a/src/wrench/job/CompoundJob.cpp +++ b/src/wrench/job/CompoundJob.cpp @@ -532,7 +532,7 @@ namespace wrench { * @return an action */ std::shared_ptr CompoundJob::getActionByName(const std::string &name) { - for (auto const &action : this->actions) { + for (auto const &action: this->actions) { if (action->getName() == name) { return action; }