Skip to content

Commit 480adbe

Browse files
jensmaurerjwakely
authored andcommitted
[print.syn] Correctly order println overloads
1 parent 608ae5c commit 480adbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/iostreams.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4258,15 +4258,15 @@
42584258
// \ref{print.fun}, print functions
42594259
template<class... Args>
42604260
void print(format_string<Args...> fmt, Args&&... args);
4261-
void println();
42624261
template<class... Args>
42634262
void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
4264-
void println(FILE* stream);
42654263

42664264
template<class... Args>
42674265
void println(format_string<Args...> fmt, Args&&... args);
4266+
void println();
42684267
template<class... Args>
42694268
void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
4269+
void println(FILE* stream);
42704270

42714271
void vprint_unicode(string_view fmt, format_args args);
42724272
void vprint_unicode(FILE* stream, string_view fmt, format_args args);

0 commit comments

Comments
 (0)