Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Feb 11, 2024
1 parent 0b9584f commit f23139c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion controller_manager/src/controller_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,10 @@ controller_interface::return_type ControllerManager::configure_controller(
{
auto controller_it = std::find_if(
to.begin(), to.end(), std::bind(controller_name_compare, std::placeholders::_1, ctrl));
if (controller_it != to.end()) new_list.push_back(*controller_it);
if (controller_it != to.end())
{
new_list.push_back(*controller_it);
}
}

to = new_list;
Expand Down

0 comments on commit f23139c

Please sign in to comment.