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

@@ -45,11 +45,6 @@ struct log_msg
mutable size_t color_range_start{0};
mutable size_t color_range_end{0};
operator fmt::string_view() const SPDLOG_NOEXCEPT
{
return payload;
}
const fmt::string_view payload;
};
} // namespace details