From e23fb6a8b48cf17bf24aef629916f94a42042945 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 29 Jul 2024 08:20:58 -0700 Subject: [PATCH] Apply clang-format --- include/fmt/base.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index 09668925..4c9525e9 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -2361,8 +2361,10 @@ FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end, basic_format_parse_context& ctx) -> const Char* { ++begin; - if (begin != end) begin = parse_dynamic_spec(begin, end, value, ref, ctx); - else report_error("invalid precision"); + if (begin != end) + begin = parse_dynamic_spec(begin, end, value, ref, ctx); + else + report_error("invalid precision"); return begin; }