This commit is contained in:
Gabi Melman 2020-02-15 10:57:12 +02:00 committed by GitHub
parent 0f42744f5c
commit 76d94e69ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ SPDLOG_INLINE void ansicolor_sink<ConsoleMutex>::set_color_mode(color_mode mode)
template<typename ConsoleMutex>
SPDLOG_INLINE void ansicolor_sink<ConsoleMutex>::print_ccode_(const string_view_t &color_code)
{
fwrite(color_code.data(), sizeof(string_view_t::char_type), color_code.size(), target_file_);
fwrite(color_code.data(), sizeof(string_view_t::value_type), color_code.size(), target_file_);
}
template<typename ConsoleMutex>