ReportUnknownType -> report_unknown_type (https://github.com/cppformat/cppformat/issues/50)

This commit is contained in:
Victor Zverovich
2014-07-26 08:42:19 -07:00
parent b498ba0bc5
commit f634ccb344
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -426,7 +426,7 @@ struct IsLongDouble { enum {VALUE = 0}; };
template <>
struct IsLongDouble<long double> { enum {VALUE = 1}; };
void ReportUnknownType(char code, const char *type);
void report_unknown_type(char code, const char *type);
extern const uint32_t POWERS_OF_10_32[];
extern const uint64_t POWERS_OF_10_64[];
@@ -1675,7 +1675,7 @@ void BasicWriter<Char>::write_int(T value, const Spec &spec) {
break;
}
default:
internal::ReportUnknownType(
internal::report_unknown_type(
spec.type(), spec.flag(CHAR_FLAG) ? "char" : "integer");
break;
}