mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-13 01:10:26 +08:00
Fixed implicit conversion to str in c_formatter
This commit is contained in:
parent
275167d1b0
commit
815b52b8fb
@ -123,9 +123,9 @@ class c_formatter final : public flag_formatter
|
|||||||
// fmt::format_to(dest, "{} {} {} ", days[tm_time.tm_wday],
|
// fmt::format_to(dest, "{} {} {} ", days[tm_time.tm_wday],
|
||||||
// months[tm_time.tm_mon], tm_time.tm_mday);
|
// months[tm_time.tm_mon], tm_time.tm_mday);
|
||||||
// date
|
// date
|
||||||
fmt_helper::append_str(days[tm_time.tm_wday], dest);
|
fmt_helper::append_c_str(days[tm_time.tm_wday], dest);
|
||||||
dest.push_back(' ');
|
dest.push_back(' ');
|
||||||
fmt_helper::append_str(months[tm_time.tm_mon], dest);
|
fmt_helper::append_c_str(months[tm_time.tm_mon], dest);
|
||||||
dest.push_back(' ');
|
dest.push_back(' ');
|
||||||
fmt_helper::append_int(tm_time.tm_mday, dest);
|
fmt_helper::append_int(tm_time.tm_mday, dest);
|
||||||
dest.push_back(' ');
|
dest.push_back(' ');
|
||||||
|
Loading…
Reference in New Issue
Block a user