From 619849c7937da8487d03c51790d20499865ed44c Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 11 Apr 2020 20:15:04 +0300 Subject: [PATCH] fixed comment --- include/spdlog/details/fmt_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/fmt_helper.h b/include/spdlog/details/fmt_helper.h index bf9dc71f..f5a8bad5 100644 --- a/include/spdlog/details/fmt_helper.h +++ b/include/spdlog/details/fmt_helper.h @@ -73,7 +73,7 @@ inline void pad_uint(T n, unsigned int width, memory_buf_t &dest) template inline void pad3(T n, memory_buf_t &dest) { - static_assert(std::is_unsigned::value, "pad_uint must get unsigned T"); + static_assert(std::is_unsigned::value, "pad3 must get unsigned T"); if(n < 1000) { dest.push_back(static_cast(n / 100 + '0'));