Fixed clang-tidy warning about implicit conversion to string_view

This commit is contained in:
gabime
2018-10-19 17:12:02 +03:00
parent c2a9bf9974
commit 70bef682b0
5 changed files with 5 additions and 10 deletions

View File

@@ -78,7 +78,7 @@ struct async_msg
, msg_id(m.msg_id)
, worker_ptr(std::move(worker))
{
fmt_helper::append_string_view(m, raw);
fmt_helper::append_string_view(m.payload, raw);
}
async_msg(async_logger_ptr &&worker, async_msg_type the_type)