Skip to content

Commit

Permalink
Apply clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jul 29, 2024
1 parent 16b3542 commit e23fb6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/fmt/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -2361,8 +2361,10 @@ FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end,
basic_format_parse_context<Char>& 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;
}

Expand Down

0 comments on commit e23fb6a

Please sign in to comment.