Skip to content

[format.syn] Fix indentation #7810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5861,7 +5861,7 @@
constexpr @\unspec@ format_kind = @\unspec@;

template<ranges::@\libconcept{input_range}@ R>
requires @\libconcept{same_as}@<R, remove_cvref_t<R>>
requires @\libconcept{same_as}@<R, remove_cvref_t<R>>
constexpr range_format format_kind<R> = @\seebelow@;

// \ref{format.range.formatter}, class template \tcode{range_formatter}
Expand All @@ -5880,7 +5880,7 @@
struct formatter<R, charT> : @\exposid{range-default-formatter}@<format_kind<R>, R, charT> { };

template<ranges::@\libconcept{input_range}@ R>
requires (format_kind<R> != range_format::disabled)
requires (format_kind<R> != range_format::disabled)
constexpr bool enable_nonlocking_formatter_optimization<R> = false;

// \ref{format.arguments}, arguments
Expand Down