mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 16:40:56 +00:00
Fixed compilation with GCC/Clang
No more 'enumeration previously declared with fixed underlying type' error
This commit is contained in:
parent
be9b2b38fc
commit
04e2b3be4a
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ EXTERN_CVAR(Int, m_use_mouse);
|
||||||
struct event_t;
|
struct event_t;
|
||||||
class FTexture;
|
class FTexture;
|
||||||
class FFont;
|
class FFont;
|
||||||
enum EColorRange;
|
enum EColorRange : int;
|
||||||
class FPlayerClass;
|
class FPlayerClass;
|
||||||
class FKeyBindings;
|
class FKeyBindings;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue