clang_format

This commit is contained in:
gabime 2019-07-14 18:35:59 +03:00
parent 724713ac80
commit 05cac05c06
2 changed files with 148 additions and 152 deletions

View File

@ -78,7 +78,6 @@ namespace spdlog {
} }
} }
template<typename ConsoleMutex> template<typename ConsoleMutex>
void SPDLOG_INLINE wincolor_sink<ConsoleMutex>::flush() void SPDLOG_INLINE wincolor_sink<ConsoleMutex>::flush()
{ {
@ -120,8 +119,7 @@ namespace spdlog {
template<typename ConsoleMutex> template<typename ConsoleMutex>
WORD SPDLOG_INLINE wincolor_sink<ConsoleMutex>::set_console_attribs(WORD attribs) WORD SPDLOG_INLINE wincolor_sink<ConsoleMutex>::set_console_attribs(WORD attribs)
{ {
in_console_ in_console_ CONSOLE_SCREEN_BUFFER_INFO orig_buffer_info;
CONSOLE_SCREEN_BUFFER_INFO orig_buffer_info;
::GetConsoleScreenBufferInfo(out_handle_, &orig_buffer_info); ::GetConsoleScreenBufferInfo(out_handle_, &orig_buffer_info);
WORD back_color = orig_buffer_info.wAttributes; WORD back_color = orig_buffer_info.wAttributes;
// retrieve the current background color // retrieve the current background color
@ -139,7 +137,6 @@ namespace spdlog {
::WriteConsoleA(out_handle_, formatted.data() + start, size, nullptr, nullptr); ::WriteConsoleA(out_handle_, formatted.data() + start, size, nullptr, nullptr);
} }
template<typename ConsoleMutex> template<typename ConsoleMutex>
void SPDLOG_INLINE wincolor_sink<ConsoleMutex>::write_to_file_(const fmt::memory_buffer &formatted) void SPDLOG_INLINE wincolor_sink<ConsoleMutex>::write_to_file_(const fmt::memory_buffer &formatted)
{ {

View File

@ -61,7 +61,6 @@ protected:
// in case we are redirected to file (not in console mode) // in case we are redirected to file (not in console mode)
void write_to_file_(const fmt::memory_buffer &formatted); void write_to_file_(const fmt::memory_buffer &formatted);
}; };
template<typename ConsoleMutex> template<typename ConsoleMutex>