Skip to content

Commit 3346632

Browse files
burblebeetkoeppe
authored andcommitted
[format.syn] Move the specialization of formatter up in the synopsis
1 parent b6e978d commit 3346632

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/utilities.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13797,19 +13797,19 @@
1379713797
size_t formatted_size(const locale& loc, @\exposid{wformat-string}@<Args...> fmt, Args&&... args);
1379813798

1379913799
// \ref{format.formatter}, formatter
13800-
// \ref{format.formatter.spec}, formatter specializations
1380113800
template<class T, class charT = char> struct formatter;
1380213801

13803-
// \ref{format.range.formatter}, class template \tcode{range_formatter}
13804-
template<class T, class charT = char>
13805-
requires @\libconcept{same_as}@<remove_cvref_t<T>, T> && @\libconcept{formattable}@<T, charT>
13806-
class range_formatter;
13807-
13802+
// \ref{format.formatter.spec}, formatter specializations
1380813803
template<ranges::@\libconcept{input_range}@ R, class charT>
1380913804
requires (!@\libconcept{same_as}@<remove_cvref_t<ranges::range_reference_t<R>>, R>) &&
1381013805
@\libconcept{formattable}@<ranges::range_reference_t<R>, charT>
1381113806
struct formatter<R, charT>;
1381213807

13808+
// \ref{format.range.formatter}, class template \tcode{range_formatter}
13809+
template<class T, class charT = char>
13810+
requires @\libconcept{same_as}@<remove_cvref_t<T>, T> && @\libconcept{formattable}@<T, charT>
13811+
class range_formatter;
13812+
1381313813
// \ref{format.parse.ctx}, class template \tcode{basic_format_parse_context}
1381413814
template<class charT> class basic_format_parse_context;
1381513815
using format_parse_context = basic_format_parse_context<char>;

0 commit comments

Comments
 (0)