From d8a9effc4760b24f3b9120af785a8c4e3c97b18a Mon Sep 17 00:00:00 2001 From: RT Date: Wed, 28 Jul 2021 22:53:06 +0300 Subject: [PATCH] Change common variable name B1 to B1_ --- include/fmt/core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index dbbf42c8..14367551 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1053,8 +1053,8 @@ FMT_CONSTEXPR FMT_INLINE void init_named_args(std::nullptr_t, int, int, const Args&...) {} template constexpr auto count() -> size_t { return B ? 1 : 0; } -template constexpr auto count() -> size_t { - return (B1 ? 1 : 0) + count(); +template constexpr auto count() -> size_t { + return (B1_ ? 1 : 0) + count(); } template constexpr auto count_named_args() -> size_t {