Skip to content

Commit eee5d51

Browse files
author
Barış Zeren
committed
chore: update
Signed-off-by: Barış Zeren <baris@leodrive.ai>
1 parent 97e327c commit eee5d51

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

planning/autoware_route_handler/include/autoware/route_handler/route_handler.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ class RouteHandler
368368
const lanelet::ConstLanelet & lanelet, lanelet::ConstLanelet * right_lanelet) const;
369369
bool getLeftLaneletWithinRoute(
370370
const lanelet::ConstLanelet & lanelet, lanelet::ConstLanelet * left_lanelet) const;
371-
lanelet::ConstLanelets getRouteLanelets() const;
372371
lanelet::ConstLanelets getLaneletSequenceUpTo(
373372
const lanelet::ConstLanelet & lanelet,
374373
const double min_length = std::numeric_limits<double>::max(),

planning/behavior_path_planner/autoware_behavior_path_planner/src/planner_manager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ BehaviorModuleOutput PlannerManager::run(const std::shared_ptr<PlannerData> & da
138138
updateCurrentRouteLanelet(data);
139139

140140
const bool is_out_of_route = utils::isEgoOutOfRoute(
141-
data->self_odometry->pose.pose, current_route_lanelet_.value(), data->prev_modified_goal,
141+
data->self_odometry->pose.pose, current_route_lanelet_->value(), data->prev_modified_goal,
142142
data->route_handler, data->parameters);
143143

144144
if (!is_any_module_running && is_out_of_route) {

0 commit comments

Comments
 (0)