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 {