Skip to content

Commit 6c20d58

Browse files
authored
fix(autoware_behavior_velocity_blind_spot_module): fix clang-diagnostic-unused-parameter (#9406)
fix: clang-diagnostic-unused-parameter Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp>
1 parent 51098eb commit 6c20d58

File tree

1 file changed

+1
-1
lines changed
  • planning/behavior_velocity_planner/autoware_behavior_velocity_blind_spot_module/src

1 file changed

+1
-1
lines changed

planning/behavior_velocity_planner/autoware_behavior_velocity_blind_spot_module/src/decisions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace autoware::behavior_velocity_planner
2424
*/
2525
template <typename T>
2626
void BlindSpotModule::setRTCStatusByDecision(
27-
const T &, const tier4_planning_msgs::msg::PathWithLaneId & path)
27+
const T &, [[maybe_unused]] const tier4_planning_msgs::msg::PathWithLaneId & path)
2828
{
2929
static_assert("Unsupported type passed to setRTCStatus");
3030
return;

0 commit comments

Comments
 (0)