Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkimura4 committed Dec 21, 2021
1 parent f9a9c40 commit 1f181b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planning/behavior_path_planner/src/utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -792,8 +792,8 @@ bool setGoal(
}

// find min_dist_index whose distance to goal is shorter than search_radius_range
const auto min_dist_index_opt = tier4_autoware_utils::findNearestIndexToGoal(
input.points, goal, goal_lane_id, search_radius_range);
const auto min_dist_index_opt =
findNearestIndexToGoal(input.points, goal, goal_lane_id, search_radius_range);
if (!min_dist_index_opt) {
return false;
}
Expand Down

0 comments on commit 1f181b5

Please sign in to comment.