Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use virtual destructor in polymorphic base classes
In order to be able to use classes such as `isobus::CANHardwarePlugin` polymophically C++ requires a `virtual` destructor in the base class. This ensures that, when the pointer to base is destroyed, that it will correctly call the derived destructors as well.
- Loading branch information