mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Fix another warning.
This commit is contained in:
@ -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')
|
||||||
|
Reference in New Issue
Block a user