Skip to content

Commit

Permalink
fix(simple_planning_simulator): fix clang-diagnostic-delete-non-abstr…
Browse files Browse the repository at this point in the history
…act-non-virtual-dtor (#9448)

Signed-off-by: veqcc <[email protected]>
  • Loading branch information
veqcc authored Nov 26, 2024
1 parent c8bbeff commit e5ad03a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class SimModelInterface
/**
* @brief destructor
*/
~SimModelInterface() = default;
virtual ~SimModelInterface() = default;

/**
* @brief get state vector of model
Expand Down

0 comments on commit e5ad03a

Please sign in to comment.