mirror of
https://github.com/yawut/SDL.git
synced 2026-07-19 01:11:38 -05:00
Turn on enums always ints for CodeWarrior (thanks Darrell!)
This commit is contained in:
parent
e8e0ebf933
commit
9d462a34f7
|
|
@ -89,6 +89,11 @@ SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
|
|||
enums having the size of an int must be enabled.
|
||||
This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11).
|
||||
*/
|
||||
/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */
|
||||
#ifdef __MWERKS__
|
||||
#pragma enumsalwaysint on
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
DUMMY_ENUM_VALUE
|
||||
} SDL_DUMMY_ENUM;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user