wrong GCC version

This commit is contained in:
Niels 2016-06-29 09:22:28 +02:00
parent d456dec320
commit 7cb8ee42d5
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ SOFTWARE.
#endif
#elif defined(__GNUC__)
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#if GCC_VERSION < 48000
#if GCC_VERSION < 49000
#error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers"
#endif
#endif

View file

@ -61,7 +61,7 @@ SOFTWARE.
#endif
#elif defined(__GNUC__)
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#if GCC_VERSION < 48000
#if GCC_VERSION < 49000
#error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers"
#endif
#endif