Define COMPILER_EXPLICIT_OVERRIDES when using gcc >= 4.7.

This commit is contained in:
Felix Geyer 2012-06-29 14:18:12 +02:00
parent 68155e8f89
commit 2287250a07

View File

@ -50,6 +50,9 @@
# define COMPILER_CONSTEXPR
# define COMPILER_NULLPTR
# endif
# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407
# define COMPILER_EXPLICIT_OVERRIDES
# endif
# endif
#endif