Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wrench-project/wrench
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Sep 14, 2024
2 parents 92b8ab1 + 0eb3a08 commit 774e23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrench/job/CompoundJob.cpp
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ namespace wrench {
* @return an action
*/
std::shared_ptr<Action> CompoundJob::getActionByName(const std::string &name) {
for (auto const &action : this->actions) {
for (auto const &action: this->actions) {
if (action->getName() == name) {
return action;
}
Expand Down

0 comments on commit 774e23e

Please sign in to comment.