Skip to content

Commit 3f6cc64

Browse files
kobayu858chtseng
authored and
chtseng
committed
fix(autoware_behavior_velocity_blind_spot_module): fix funcArgNamesDifferent (autowarefoundation#8021)
* fix:funcArgNamesDifferent Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix:funcArgNamesDifferent Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * refactor:clang format Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> --------- Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp>
1 parent 1c84520 commit 3f6cc64

File tree

1 file changed

+4
-3
lines changed
  • planning/behavior_velocity_planner/autoware_behavior_velocity_blind_spot_module/src

1 file changed

+4
-3
lines changed

planning/behavior_velocity_planner/autoware_behavior_velocity_blind_spot_module/src/scene.hpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class BlindSpotModule : public SceneModuleInterface
168168
tier4_planning_msgs::msg::PathWithLaneId * path) const;
169169

170170
std::optional<OverPassJudge> isOverPassJudge(
171-
const tier4_planning_msgs::msg::PathWithLaneId & path,
171+
const tier4_planning_msgs::msg::PathWithLaneId & input_path,
172172
const geometry_msgs::msg::Pose & stop_point_pose) const;
173173

174174
double computeTimeToPassStopLine(
@@ -215,7 +215,7 @@ class BlindSpotModule : public SceneModuleInterface
215215
std::optional<lanelet::CompoundPolygon3d> generateBlindSpotPolygons(
216216
const tier4_planning_msgs::msg::PathWithLaneId & path, const size_t closest_idx,
217217
const lanelet::ConstLanelets & blind_spot_lanelets,
218-
const geometry_msgs::msg::Pose & pose) const;
218+
const geometry_msgs::msg::Pose & stop_line_pose) const;
219219

220220
/**
221221
* @brief Check if object is belong to targeted classes
@@ -231,7 +231,8 @@ class BlindSpotModule : public SceneModuleInterface
231231
*/
232232
autoware_perception_msgs::msg::PredictedObject cutPredictPathWithDuration(
233233
const std_msgs::msg::Header & header,
234-
const autoware_perception_msgs::msg::PredictedObject & object, const double time_thr) const;
234+
const autoware_perception_msgs::msg::PredictedObject & object_original,
235+
const double time_thr) const;
235236

236237
StateMachine state_machine_; //! for state
237238

0 commit comments

Comments
 (0)