Graphics/AbstractViewer: Set virtual destructor

This commit is contained in:
SirLynix 2023-02-15 16:33:02 +01:00
parent f6154bb98b
commit e96204a2ab
2 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,7 @@ namespace Nz
{ {
public: public:
AbstractViewer() = default; AbstractViewer() = default;
~AbstractViewer() = default; virtual ~AbstractViewer();
virtual const Color& GetClearColor() const = 0; virtual const Color& GetClearColor() const = 0;
virtual UInt32 GetRenderMask() const = 0; virtual UInt32 GetRenderMask() const = 0;

View File

@ -7,4 +7,5 @@
namespace Nz namespace Nz
{ {
AbstractViewer::~AbstractViewer() = default;
} }