Skip to content

Commit

Permalink
fix(autoware_traffic_light_classifier): fix clang-diagnostic-delete-a…
Browse files Browse the repository at this point in the history
…bstract-non-virtual-dtor (#9497)

fix: clang-diagnostic-delete-abstract-non-virtual-dtor

Signed-off-by: kobayu858 <[email protected]>
  • Loading branch information
kobayu858 authored Nov 28, 2024
1 parent 659b6b3 commit 64faa5c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ namespace autoware::traffic_light
class ClassifierInterface
{
public:
virtual ~ClassifierInterface() = default;
virtual bool getTrafficSignals(
const std::vector<cv::Mat> & input_image,
tier4_perception_msgs::msg::TrafficLightArray & traffic_signals) = 0;
Expand Down

0 comments on commit 64faa5c

Please sign in to comment.