From 4cabe16241454cbc554059a9904bf185dd0603f6 Mon Sep 17 00:00:00 2001 From: jdale88 Date: Tue, 11 Mar 2014 19:03:26 +0000 Subject: [PATCH] Should use Char not char, as Char is typedef'd to the correct type (char or wchar_t) --- format.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.cc b/format.cc index c3170cd0..090e3f4d 100644 --- a/format.cc +++ b/format.cc @@ -633,7 +633,7 @@ void fmt::BasicFormatter::DoFormat() { } else { out = writer.GrowBuffer(1); } - *out = static_cast(arg.int_value); + *out = static_cast(arg.int_value); break; } case STRING: {