Add missing virtual destructor in SPICE_GENERATOR

This commit is contained in:
Mikolaj Wielgus 2022-09-22 09:51:23 +02:00
parent 839d31d427
commit e27969217c
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class SPICE_GENERATOR
{
public:
SPICE_GENERATOR( const SIM_MODEL& aModel ) : m_model( aModel ) {}
virtual ~SPICE_GENERATOR() = default;
virtual std::string ModelLine( const std::string& aModelName ) const;