Add braces for readability

This commit is contained in:
Victor Zverovich 2026-09-11 08:49:10 -07:00
parent 6aa4a5f6f8
commit 14174c826d

View File

@ -646,8 +646,9 @@ struct formatter<
FMT_CONSTEXPR auto parse(parse_context<Char>& ctx) -> const Char* {
auto it = underlying_.parse(ctx);
if FMT_CONSTEXPR20 (range_format_kind<R, Char>::value ==
range_format::debug_string)
range_format::debug_string) {
underlying_.set_debug_format();
}
return it;
}