Base classes should have destructors defined as virtual

This commit is contained in:
Dan Paulat 2022-06-04 09:56:51 -05:00
parent d041e7e217
commit 1974fbbc93
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ class NexradDataProvider
{
public:
explicit NexradDataProvider();
~NexradDataProvider();
virtual ~NexradDataProvider();
NexradDataProvider(const NexradDataProvider&) = delete;
NexradDataProvider& operator=(const NexradDataProvider&) = delete;