diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/physfsrwops.h | 8 | ||||
-rw-r--r-- | src/utils/sdl2helper.h | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/utils/physfsrwops.h b/src/utils/physfsrwops.h index 4c3c05988..e1226f3b4 100644 --- a/src/utils/physfsrwops.h +++ b/src/utils/physfsrwops.h @@ -25,6 +25,14 @@ #ifndef UTILS_PHYSFSRWOPS_H #define UTILS_PHYSFSRWOPS_H +#ifdef USE_SDL2 +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wswitch-default" +#endif +#include <SDL_stdinc.h> +#ifdef USE_SDL2 +#pragma GCC diagnostic pop +#endif #include <SDL_rwops.h> #include "utils/physfstools.h" diff --git a/src/utils/sdl2helper.h b/src/utils/sdl2helper.h index d1b918b51..7cf471542 100644 --- a/src/utils/sdl2helper.h +++ b/src/utils/sdl2helper.h @@ -24,6 +24,10 @@ #ifdef USE_SDL2 #include "utils/stringvector.h" +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wswitch-default" +#include <SDL_stdinc.h> +#pragma GCC diagnostic pop #include <SDL_thread.h> #include "localconsts.h" |