Apply clang-format

This commit is contained in:
Victor Zverovich
2024-07-29 08:20:58 -07:00
parent 16b3542f7e
commit e23fb6a8b4

View File

@ -2361,8 +2361,10 @@ FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end,
basic_format_parse_context<Char>& ctx) basic_format_parse_context<Char>& ctx)
-> const Char* { -> const Char* {
++begin; ++begin;
if (begin != end) begin = parse_dynamic_spec(begin, end, value, ref, ctx); if (begin != end)
else report_error("invalid precision"); begin = parse_dynamic_spec(begin, end, value, ref, ctx);
else
report_error("invalid precision");
return begin; return begin;
} }