1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Fixed constexpr compiler support detection in gcc

This commit is contained in:
hogliux 2017-09-25 14:29:47 +01:00
parent a21a2a42dd
commit 8d86e6350a

View file

@ -47,7 +47,7 @@
#define JUCE_COMPILER_SUPPORTS_THREAD_LOCAL 1
#endif
#if __cpp_constexpr >= 201304
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500
#define JUCE_HAS_CONSTEXPR 1
#endif