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/dumplibs.cpp | |
parent | e9492b0913465c274ff9bf28934967febb553db3 (diff) | |
download | mv-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.gz mv-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.bz2 mv-f29d4876505fd3fd8c5d2c115e2a790409b02289.tar.xz mv-f29d4876505fd3fd8c5d2c115e2a790409b02289.zip |
Fix compilation with gcc version below 4.6.
Diffstat (limited to 'src/utils/dumplibs.cpp')
-rw-r--r-- | src/utils/dumplibs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/dumplibs.cpp b/src/utils/dumplibs.cpp index 6b99cd088..4efd647d8 100644 --- a/src/utils/dumplibs.cpp +++ b/src/utils/dumplibs.cpp @@ -31,10 +31,10 @@ PRAGMACLANG6(GCC diagnostic ignored "-Wold-style-cast") #include <SDL_net.h> PRAGMACLANG6(GCC diagnostic pop) #include <SDL_ttf.h> -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wlong-long" +PRAGMA45(GCC diagnostic push) +PRAGMA45(GCC diagnostic ignored "-Wlong-long") #include <physfs.h> -#pragma GCC diagnostic pop +PRAGMA45(GCC diagnostic pop) #include <zlib.h> #include <curl/curl.h> |