Skip to content

Commit

Permalink
Replace reference with plain type where sensible
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Sep 25, 2023
1 parent 665ba0b commit 853f7e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ bool PlanningRequestAdapterChain::adaptAndPlan(const planning_interface::Planner
// merge the index values from each adapter (in reverse order)
for (auto added_state_by_each_adapter_it = added_path_index_each.rbegin();
added_state_by_each_adapter_it != added_path_index_each.rend(); ++added_state_by_each_adapter_it)
for (std::size_t& added_index : *added_state_by_each_adapter_it)
for (std::size_t added_index : *added_state_by_each_adapter_it)
{
for (std::size_t& index_in_path : added_path_index)
if (added_index <= index_in_path)
Expand Down

0 comments on commit 853f7e6

Please sign in to comment.