mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- Fixed missing right paren on the first _Pragma from last commit.
This commit is contained in:
parent
f76d137d33
commit
84afd2252f
1 changed files with 2 additions and 2 deletions
|
@ -49,13 +49,13 @@
|
||||||
|
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
#define IGNORE_FORMAT_PRE \
|
#define IGNORE_FORMAT_PRE \
|
||||||
_Pragma("GCC diagnostic push" \
|
_Pragma("GCC diagnostic push") \
|
||||||
_Pragma("GCC diagnostic ignored \"-Wformat-invalid-specifier\"") \
|
_Pragma("GCC diagnostic ignored \"-Wformat-invalid-specifier\"") \
|
||||||
_Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"")
|
_Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"")
|
||||||
#define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop")
|
#define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop")
|
||||||
#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ >= 6)))
|
#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ >= 6)))
|
||||||
#define IGNORE_FORMAT_PRE \
|
#define IGNORE_FORMAT_PRE \
|
||||||
_Pragma("GCC diagnostic push" \
|
_Pragma("GCC diagnostic push") \
|
||||||
_Pragma("GCC diagnostic ignored \"-Wformat=\"") \
|
_Pragma("GCC diagnostic ignored \"-Wformat=\"") \
|
||||||
_Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"")
|
_Pragma("GCC diagnostic ignored \"-Wformat-extra-args\"")
|
||||||
#define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop")
|
#define IGNORE_FORMAT_POST _Pragma("GCC diagnostic pop")
|
||||||
|
|
Loading…
Reference in a new issue