summaryrefslogtreecommitdiff
path: root/src/gui/fonts
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-20 03:06:00 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-20 04:04:40 +0300
commit5e37f24550e133d985945bb008782df543e1f428 (patch)
treed32657fab845823be6a75bc743bdf6e8a357bcaa /src/gui/fonts
parentd3c69c839b180e1d22d5a89625322dfc6ae72785 (diff)
downloadplus-5e37f24550e133d985945bb008782df543e1f428.tar.gz
plus-5e37f24550e133d985945bb008782df543e1f428.tar.bz2
plus-5e37f24550e133d985945bb008782df543e1f428.tar.xz
plus-5e37f24550e133d985945bb008782df543e1f428.zip
Fix sdl warning hiding pragmas for old compilers.
Diffstat (limited to 'src/gui/fonts')
-rw-r--r--src/gui/fonts/font.h6
-rw-r--r--src/gui/fonts/textchunk.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/fonts/font.h b/src/gui/fonts/font.h
index 053167158..f4f30a8be 100644
--- a/src/gui/fonts/font.h
+++ b/src/gui/fonts/font.h
@@ -69,10 +69,10 @@
#include "gui/fonts/textchunklist.h"
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wshadow")
+PRAGMA48(GCC diagnostic push)
+PRAGMA48(GCC diagnostic ignored "-Wshadow")
#include <SDL_ttf.h>
-#pragma GCC diagnostic pop
+PRAGMA48(GCC diagnostic pop)
#include "localconsts.h"
diff --git a/src/gui/fonts/textchunk.h b/src/gui/fonts/textchunk.h
index 2fe8c7adc..bbd50fdff 100644
--- a/src/gui/fonts/textchunk.h
+++ b/src/gui/fonts/textchunk.h
@@ -28,10 +28,10 @@
#include <string>
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wshadow")
+PRAGMA48(GCC diagnostic push)
+PRAGMA48(GCC diagnostic ignored "-Wshadow")
#include <SDL_ttf.h>
-#pragma GCC diagnostic pop
+PRAGMA48(GCC diagnostic pop)
#include "localconsts.h"