diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-24 02:19:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-24 02:19:26 +0300 |
commit | 7bb78f86f15d05c7aca5566d391784df35e42db0 (patch) | |
tree | 27841f182f3e0397f0855daf73df764cbebade69 /src/localconsts.h | |
parent | 57bf5b505ddcb3844af903d831f5aed296ec05ef (diff) | |
download | plus-7bb78f86f15d05c7aca5566d391784df35e42db0.tar.gz plus-7bb78f86f15d05c7aca5566d391784df35e42db0.tar.bz2 plus-7bb78f86f15d05c7aca5566d391784df35e42db0.tar.xz plus-7bb78f86f15d05c7aca5566d391784df35e42db0.zip |
Add ignore some compilation options in tinyxml2 include.
Diffstat (limited to 'src/localconsts.h')
-rw-r--r-- | src/localconsts.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index 786177138..6be9d0eaa 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -196,11 +196,19 @@ #ifdef ADVGCC #define const2 const + +#if GCC_VERSION >= 49000 +#define PRAGMA49(str) _Pragma(#str) +#else // GCC_VERSION > 49000 +#define PRAGMA49(str) +#endif // GCC_VERSION > 49000 + #if GCC_VERSION >= 60000 #define PRAGMA6(str) _Pragma(#str) #else // GCC_VERSION > 60000 #define PRAGMA6(str) #endif // GCC_VERSION > 60000 + #if GCC_VERSION >= 70000 #define A_FALLTHROUGH __attribute__ ((fallthrough)); #else // GCC_VERSION > 70000 |