Should use Char not char, as Char is typedef'd to the correct type (char or wchar_t)

This commit is contained in:
jdale88 2014-03-11 19:03:26 +00:00
parent a9862fdb22
commit 4cabe16241

View File

@ -633,7 +633,7 @@ void fmt::BasicFormatter<Char>::DoFormat() {
} else {
out = writer.GrowBuffer(1);
}
*out = static_cast<char>(arg.int_value);
*out = static_cast<Char>(arg.int_value);
break;
}
case STRING: {