Fix compile error for missing dtor in overload

This commit is contained in:
Seth Hillbrand 2019-01-02 19:55:16 -08:00
parent 9f8f938660
commit 8de12094d8
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (C) 2017 CERN
* @author Janito Vaqueiro Ferreira Filho <janito.vff@gmail.com>
* Copyright (C) 2018 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2018-2019 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -33,6 +33,7 @@
class IMPORTED_SHAPE
{
public:
virtual ~IMPORTED_SHAPE() {}
virtual void ImportTo( GRAPHICS_IMPORTER& aImporter ) const = 0;
};