Skip to content

Commit bfca260

Browse files
committed
fix
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
1 parent 01a9101 commit bfca260

File tree

1 file changed

+2
-2
lines changed
  • planning/behavior_velocity_planner/autoware_behavior_velocity_walkway_module/src

1 file changed

+2
-2
lines changed

planning/behavior_velocity_planner/autoware_behavior_velocity_walkway_module/src/scene_walkway.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ std::optional<std::pair<double, geometry_msgs::msg::Point>> WalkwayModule::getSt
6060
{
6161
const auto & ego_pos = planner_data_->current_odometry->pose.position;
6262
for (const auto & stop_line : stop_lines_) {
63-
const auto p_stop_lines = getLinestringIntersects(
64-
ego_path, lanelet::utils::to2D(stop_line).basicLineString(), ego_pos, 2);
63+
const auto p_stop_lines =
64+
getLinestringIntersects(ego_path, lanelet::utils::to2D(stop_line).basicLineString(), ego_pos);
6565
if (p_stop_lines.empty()) {
6666
continue;
6767
}

0 commit comments

Comments
 (0)