Commit cff1c794 authored by Victor Zverovich's avatar Victor Zverovich

Fix another warning.

parent 537c6c4e
...@@ -840,7 +840,7 @@ void fmt::internal::PrintfParser<Char>::Format( ...@@ -840,7 +840,7 @@ void fmt::internal::PrintfParser<Char>::Format(
writer.write_str(arg.string, spec); writer.write_str(arg.string, spec);
break; break;
case Arg::WSTRING: case Arg::WSTRING:
writer.write_str(arg.wstring, spec); writer.write_str(internal::CharTraits<Char>::convert(arg.wstring), spec);
break; break;
case Arg::POINTER: case Arg::POINTER:
if (spec.type_ && spec.type_ != 'p') if (spec.type_ && spec.type_ != 'p')
......
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