1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed compatibility with g++ 4.9 and c++14

This commit is contained in:
Tom Poole 2019-05-14 10:27:28 +01:00
parent 6b5fc49f71
commit 5c19eacd0b

View file

@ -50,7 +50,7 @@
#endif
#endif
#define JUCE_CXX14_IS_AVAILABLE (__cplusplus >= 201402L)
#define JUCE_CXX14_IS_AVAILABLE ((__cplusplus >= 201402L) || ((__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && (__cplusplus >= 201300L)))
#define JUCE_CXX17_IS_AVAILABLE (__cplusplus >= 201703L)
#endif