summaryrefslogtreecommitdiff
path: root/src/localconsts.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-07 17:21:59 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-07 17:21:59 +0300
commitf29d4876505fd3fd8c5d2c115e2a790409b02289 (patch)
treef25c9d77139e8ae0e02ab6631e99c80566d7e588 /src/localconsts.h
parente9492b0913465c274ff9bf28934967febb553db3 (diff)
downloadplus-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.gz
plus-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.bz2
plus-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.xz
plus-f29d4876505fd3fd8c5d2c115e2a790409b02289.zip
Fix compilation with gcc version below 4.6.
Diffstat (limited to 'src/localconsts.h')
-rw-r--r--src/localconsts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/localconsts.h b/src/localconsts.h
index 08623b2b5..072b063d0 100644
--- a/src/localconsts.h
+++ b/src/localconsts.h
@@ -294,12 +294,12 @@
#endif // ENABLE_CHECKS
#ifdef USE_SDL2
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wswitch-default"
+PRAGMA45(GCC diagnostic push)
+PRAGMA45(GCC diagnostic ignored "-Wswitch-default")
#endif // USE_SDL2
#include <SDL_version.h>
#ifdef USE_SDL2
-#pragma GCC diagnostic pop
+PRAGMA45(GCC diagnostic pop)
#endif // USE_SDL2
#if SDL_VERSION_ATLEAST(2, 0, 0)