Skip to content

Commit

Permalink
fix(autoware_behavior_velocity_occlusion_spot_module): fix redundantA…
Browse files Browse the repository at this point in the history
…ssignment bug (#7559)

Signed-off-by: Ryuta Kambe <[email protected]>
  • Loading branch information
veqcc authored Jun 18, 2024
1 parent 4094bbf commit f4b14da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ inline void generatePossibleCollisions(
// intersection
geometry_msgs::msg::Pose intersection_pose{};
intersection_pose.position.x = x0 + x_step * i + lon;
intersection_pose.position.x = y0 + y_step * i;
intersection_pose.position.y = y0 + y_step * i;

// collision path point
autoware_planning_msgs::msg::PathPoint collision_with_margin{};
Expand Down

0 comments on commit f4b14da

Please sign in to comment.