diff options
author | jak1 <mike.wollmann@gmail.com> | 2021-12-18 16:18:46 +0100 |
---|---|---|
committer | jak1 <mike.wollmann@gmail.com> | 2021-12-18 16:18:46 +0100 |
commit | 66501994d31c6e44e1c5210af09a3c5973a7ccc9 (patch) | |
tree | dcac907a1195c6d73a33f00f69ba732627d8c2eb /src/localconsts.h | |
parent | 96f62b9e3f52302cbaec6c11eeb10e3e3b3b9fae (diff) | |
download | manaplus-66501994d31c6e44e1c5210af09a3c5973a7ccc9.tar.gz manaplus-66501994d31c6e44e1c5210af09a3c5973a7ccc9.tar.bz2 manaplus-66501994d31c6e44e1c5210af09a3c5973a7ccc9.tar.xz manaplus-66501994d31c6e44e1c5210af09a3c5973a7ccc9.zip |
added diagnostic ignore -Warray-bounds to gcc-snapshot (gcc11+ bug)
Diffstat (limited to 'src/localconsts.h')
-rw-r--r-- | src/localconsts.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index c8ac23e46..dc3afad6e 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -210,6 +210,12 @@ #define PRAGMA8(str) #endif // GCC_VERSION > 80000 +#if GCC_VERSION >= 110000 +#define PRAGMA11(str) _Pragma(#str) +#else // GCC_VERSION > 110000 +#define PRAGMA11(str) +#endif // GCC_VERSION > 110000 + #ifdef __clang__ #define PRAGMACLANG(str) _Pragma(#str) #if CLANG_VERSION >= 50000 |