DescentDevelopers / Descent3

Descent 3 by Outrage Entertainment
GNU General Public License v3.0
2.88k stars 251 forks source link

Resolve 3301 compiler warnings #645

Closed jengelh closed 4 hours ago

jengelh commented 3 weeks ago

Pull Request Type

Description

Compiler warnings point out qualitative issues with the code. gcc emits roughly 3860 warnings on Linux-amd64. This batch addresses the top two categories,

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);
scripts/LEVEL0.cpp:1036:27: warning: unused variable "event_data" [-Wunused-variable]

Checklist