Skip to content

Commit

Permalink
fix(autoware_behavior_velocity_blind_spot_module): fix clang-diagnost…
Browse files Browse the repository at this point in the history
…ic-unused-parameter (#9406)

fix: clang-diagnostic-unused-parameter

Signed-off-by: kobayu858 <[email protected]>
  • Loading branch information
kobayu858 authored Nov 20, 2024
1 parent 51098eb commit 6c20d58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace autoware::behavior_velocity_planner
*/
template <typename T>
void BlindSpotModule::setRTCStatusByDecision(
const T &, const tier4_planning_msgs::msg::PathWithLaneId & path)
const T &, [[maybe_unused]] const tier4_planning_msgs::msg::PathWithLaneId & path)
{
static_assert("Unsupported type passed to setRTCStatus");
return;
Expand Down

0 comments on commit 6c20d58

Please sign in to comment.