mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- fix GCC/Clang compilation error
source/games/duke/src/types.h:178:14: error: exception specification of overriding function is more lax than base version
This commit is contained in:
parent
ecfa45c3ec
commit
a69d904192
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ public:
|
|||
CDukeKillEvent(int type): Type_(type) {}
|
||||
int Type() const { return Type_; }
|
||||
// to print a meaningful message if killit got called from the wrong place.
|
||||
const char* what() const override { return "killit called from outside RunState!"; }
|
||||
const char* what() const noexcept override { return "killit called from outside RunState!"; }
|
||||
};
|
||||
|
||||
struct animwalltype
|
||||
|
|
Loading…
Reference in a new issue