Commit d89baf4c authored by gabime's avatar gabime

Fixed tidy warning

parent 2eb52cd0
...@@ -14,11 +14,9 @@ namespace fmt_helper { ...@@ -14,11 +14,9 @@ namespace fmt_helper {
inline spdlog::string_view_t to_string_view(const memory_buf_t &buf) SPDLOG_NOEXCEPT inline spdlog::string_view_t to_string_view(const memory_buf_t &buf) SPDLOG_NOEXCEPT
{ {
return spdlog::string_view_t(buf.data(), buf.size()); return spdlog::string_view_t{buf.data(), buf.size()};
} }
inline void append_string_view(spdlog::string_view_t view, memory_buf_t &dest) inline void append_string_view(spdlog::string_view_t view, memory_buf_t &dest)
{ {
auto *buf_ptr = view.data(); auto *buf_ptr = view.data();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment