gcc.h: require gcc 4.6

We use range-based for and nullptr, which was not implemented prior to
gcc 4.6.
This commit is contained in:
Max Kellermann 2012-09-25 11:39:46 +02:00
parent e2a574e2a0
commit e7e52c24f5
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@
#ifdef __cplusplus
#if !defined(__clang__) && defined(__GNUC__) && !GCC_CHECK_VERSION(4,5)
#error Your gcc version is too old. MPD requires gcc 4.5 or newer.
#if !defined(__clang__) && defined(__GNUC__) && !GCC_CHECK_VERSION(4,6)
#error Your gcc version is too old. MPD requires gcc 4.6 or newer.
#endif
/* support for C++11 "override" was added in gcc 4.7 */