build: resolve 2107 instances of -Wdelete-non-virtual-dtor

scripts/Y2K.cpp:467:5: warning: deleting object of polymorphic class type
"LevelScript_0000" which has non-virtual destructor might cause undefined
behavior [-Wdelete-non-virtual-dtor]
  467 |     delete ((LevelScript_0000 *)ptr);
This commit is contained in:
Jan Engelhardt
2024-11-03 10:35:25 +01:00
parent d51ce964c7
commit a58c2752e5
56 changed files with 56 additions and 53 deletions

View File

@@ -56,7 +56,7 @@ tScriptInfo ScriptInfo[MAX_IDS] = {{ID_SHIELD_ORB, "Shield"}, {ID_ENERGY_ORB, "E
class BaseObjScript {
public:
BaseObjScript();
~BaseObjScript();
virtual ~BaseObjScript();
virtual int16_t CallEvent(int event, tOSIRISEventInfo *data);
protected: