Skip to content

Commit

Permalink
fix(autoware_behavior_velocity_planner): fix naming issues
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed Apr 12, 2024
1 parent 3f98399 commit 112ccdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planning/behavior_velocity_planner/src/planner_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ std::string json_dumps_pose(const geometry_msgs::msg::Pose & pose)
return json_dumps_pose;
}

diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
diagnostic_msgs::msg::DiagnosticStatus make_stop_reason_diag(
const std::string & stop_reason, const geometry_msgs::msg::Pose & stop_pose)
{
diagnostic_msgs::msg::DiagnosticStatus stop_reason_diag;
Expand Down Expand Up @@ -119,7 +119,7 @@ autoware_auto_planning_msgs::msg::PathWithLaneId BehaviorVelocityPlannerManager:
}
}

stop_reason_diag_ = makeStopReasonDiag(
stop_reason_diag_ = make_stop_reason_diag(
stop_reason_msg, output_path_msg.points[first_stop_path_point_index].point.pose);

return output_path_msg;
Expand Down

0 comments on commit 112ccdf

Please sign in to comment.