renamed level::to_str() to level::to_c_str()

This commit is contained in:
gabime
2018-07-04 02:08:28 +03:00
parent 1f801828a5
commit 1d9e2304be
3 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ namespace details {
namespace fmt_helper {
inline void append_str(const std::string &str, fmt::memory_buffer &dest)
{
const char *str_ptr = str.data();
auto *str_ptr = str.data();
dest.append(str_ptr, str_ptr + str.size());
}