diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-07 17:21:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-07 17:21:59 +0300 |
commit | f29d4876505fd3fd8c5d2c115e2a790409b02289 (patch) | |
tree | f25c9d77139e8ae0e02ab6631e99c80566d7e588 /src/utils/physfstools.h | |
parent | e9492b0913465c274ff9bf28934967febb553db3 (diff) | |
download | plus-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.h | 8 |
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> |