Removed redundant casts to string_view

This commit is contained in:
gabime
2018-10-30 01:23:17 +02:00
parent 0d0706a204
commit e35414a0f1
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ class name_formatter : public flag_formatter
{
void format(const details::log_msg &msg, const std::tm &, fmt::memory_buffer &dest) override
{
fmt_helper::append_string_view(string_view_t(*msg.logger_name), dest);
fmt_helper::append_string_view(*msg.logger_name, dest);
}
};