mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Don't use ignore_incompatible_str in ArgFormatter
This commit is contained in:
parent
63f6c10449
commit
9b6b3382e3
@ -697,8 +697,11 @@ class fmt::internal::ArgFormatter :
|
||||
void visit_string(Arg::StringValue<char> value) {
|
||||
writer_.write_str(value, spec_);
|
||||
}
|
||||
void visit_wstring(Arg::StringValue<wchar_t> value) {
|
||||
writer_.write_str(ignore_incompatible_str<Char>(value), spec_);
|
||||
|
||||
using ArgVisitor<fmt::internal::ArgFormatter<Char>, void>::visit_wstring;
|
||||
|
||||
void visit_wstring(Arg::StringValue<Char> value) {
|
||||
writer_.write_str(value, spec_);
|
||||
}
|
||||
|
||||
void visit_pointer(const void *value) {
|
||||
|
Loading…
Reference in New Issue
Block a user