Commit 4cabe162 authored by jdale88's avatar jdale88

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

parent a9862fdb
......@@ -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: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment