From 8bc1ca0e445bf8efa15712be312af69631a5a4e5 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 12 Apr 2020 02:21:48 +0300 Subject: [PATCH] clang-format --- include/spdlog/details/fmt_helper.h | 2 +- include/spdlog/pattern_formatter-inl.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/include/spdlog/details/fmt_helper.h b/include/spdlog/details/fmt_helper.h index 06ec373c..cbc0bdf3 100644 --- a/include/spdlog/details/fmt_helper.h +++ b/include/spdlog/details/fmt_helper.h @@ -65,7 +65,7 @@ template inline void pad3(T n, memory_buf_t &dest) { static_assert(std::is_unsigned::value, "pad3 must get unsigned T"); - if(n < 1000) + if (n < 1000) { dest.push_back(static_cast(n / 100 + '0')); n = n % 100; diff --git a/include/spdlog/pattern_formatter-inl.h b/include/spdlog/pattern_formatter-inl.h index 35e84412..e9c18cb8 100644 --- a/include/spdlog/pattern_formatter-inl.h +++ b/include/spdlog/pattern_formatter-inl.h @@ -659,7 +659,6 @@ public: } }; - // Current pid template class pid_formatter final : public flag_formatter @@ -694,7 +693,6 @@ public: } }; - template class v_formatter final : public flag_formatter {