mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Fix another warning.
This commit is contained in:
parent
537c6c4e18
commit
cff1c79469
@ -840,7 +840,7 @@ void fmt::internal::PrintfParser<Char>::Format(
|
||||
writer.write_str(arg.string, spec);
|
||||
break;
|
||||
case Arg::WSTRING:
|
||||
writer.write_str(arg.wstring, spec);
|
||||
writer.write_str(internal::CharTraits<Char>::convert(arg.wstring), spec);
|
||||
break;
|
||||
case Arg::POINTER:
|
||||
if (spec.type_ && spec.type_ != 'p')
|
||||
|
Loading…
Reference in New Issue
Block a user