clang-format

This commit is contained in:
gabime
2019-07-18 14:26:36 +03:00
parent baa978ab0b
commit a7ba6e447d
5 changed files with 15 additions and 15 deletions

View File

@@ -205,7 +205,6 @@ SPDLOG_INLINE bool logger::should_flush_(const details::log_msg &msg)
return (msg.level >= flush_level) && (msg.level != level::off);
}
SPDLOG_INLINE void logger::err_handler_(const std::string &msg)
{
@@ -222,7 +221,7 @@ SPDLOG_INLINE void logger::err_handler_(const std::string &msg)
std::lock_guard<std::mutex> lk{mutex};
auto now = system_clock::now();
err_counter++;
if(now - last_report_time < std::chrono::seconds(1))
if (now - last_report_time < std::chrono::seconds(1))
{
return;
}