Fix compile error on clang when formatting a C++11-style enum

Thanks to @Naios.
This commit is contained in:
vitaut 2015-03-18 11:08:34 -07:00
parent 2adbfa4af7
commit bf8636c959

View File

@ -774,20 +774,7 @@ class IsConvertibleToInt {
static const T &get();
static yes &check(char);
static yes &check(signed char);
static yes &check(unsigned char);
static yes &check(short);
static yes &check(unsigned short);
static yes &check(int);
static yes &check(unsigned int);
static yes &check(long);
static yes &check(unsigned long);
static yes &check(fmt::LongLong);
static yes &check(fmt::ULongLong);
static yes &check(float);
static yes &check(double);
static yes &check(long double);
static no &check(...);
public: