- added virtual destructor to FDelayedCommand

src/c_dispatch.cpp:143:5: warning: delete called on 'FDelayedCommand' that is abstract but has non-virtual destructor [-Wdelete-non-virtual-dtor]
src/tarray.h:582:5: warning: delete called on 'FDelayedCommand' that is abstract but has non-virtual destructor [-Wdelete-non-virtual-dtor]
src/tarray.h:574:5: warning: delete called on 'FDelayedCommand' that is abstract but has non-virtual destructor [-Wdelete-non-virtual-dtor]
This commit is contained in:
alexey.lysiuk 2019-01-27 17:38:10 +02:00 committed by drfrag
parent 9cf9dc1f6b
commit fa7d01896e

View file

@ -80,6 +80,9 @@ public:
class FDelayedCommand
{
public:
virtual ~FDelayedCommand() {}
protected:
virtual bool Tick() = 0;