summaryrefslogtreecommitdiff
path: root/src/utils/physfstools.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/utils/physfstools.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/utils/physfstools.h')
-rw-r--r--src/utils/physfstools.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/utils/physfstools.h b/src/utils/physfstools.h
index f65b9c344..3db197927 100644
--- a/src/utils/physfstools.h
+++ b/src/utils/physfstools.h
@@ -21,10 +21,12 @@
#ifndef UTILS_PHYSFSTOOLS_H
#define UTILS_PHYSFSTOOLS_H
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wlong-long"
+#include "localconsts.h"
+
+PRAGMA45(GCC diagnostic push)
+PRAGMA45(GCC diagnostic ignored "-Wlong-long")
#include <physfs.h>
-#pragma GCC diagnostic pop
+PRAGMA45(GCC diagnostic pop)
#include <string>