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

@@ -136,7 +136,7 @@ DLLEXPORT int STDCALL SaveRestoreState(void *file_ptr, uint8_t saving_state);
class BaseScript {
public:
BaseScript();
~BaseScript();
virtual ~BaseScript();
virtual int16_t CallEvent(int event, tOSIRISEventInfo *data);
};