Skip to content

Commit 3c8ba25

Browse files
committed
[input.output] Change exposition-only format-string to format_string
These exposition-only names were added by LWG Motion-11 P2093R14 ("Formatted output") and need to be updated.
1 parent dcef4d0 commit 3c8ba25

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

source/iostreams.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4168,9 +4168,9 @@
41684168

41694169
// \ref{ostream.formatted.print}, print functions
41704170
template<class... Args>
4171-
void print(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args);
4171+
void print(ostream& os, format_string<Args...> fmt, Args&&... args);
41724172
template<class... Args>
4173-
void println(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args);
4173+
void println(ostream& os, format_string<Args...> fmt, Args&&... args);
41744174

41754175
void vprint_unicode(ostream& os, string_view fmt, format_args args);
41764176
void vprint_nonunicode(ostream& os, string_view fmt, format_args args);
@@ -4222,14 +4222,14 @@
42224222
namespace std {
42234223
// \ref{print.fun}, print functions
42244224
template<class... Args>
4225-
void print(@\exposid{format-string}@<Args...> fmt, Args&&... args);
4225+
void print(format_string<Args...> fmt, Args&&... args);
42264226
template<class... Args>
4227-
void print(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args);
4227+
void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
42284228

42294229
template<class... Args>
4230-
void println(@\exposid{format-string}@<Args...> fmt, Args&&... args);
4230+
void println(format_string<Args...> fmt, Args&&... args);
42314231
template<class... Args>
4232-
void println(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args);
4232+
void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
42334233

42344234
void vprint_unicode(string_view fmt, format_args args);
42354235
void vprint_unicode(FILE* stream, string_view fmt, format_args args);
@@ -6808,7 +6808,7 @@
68086808
\indexlibraryglobal{print}%
68096809
\begin{itemdecl}
68106810
template<class... Args>
6811-
void print(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args);
6811+
void print(ostream& os, format_string<Args...> fmt, Args&&... args);
68126812
\end{itemdecl}
68136813

68146814
\begin{itemdescr}
@@ -6827,7 +6827,7 @@
68276827
\indexlibraryglobal{println}%
68286828
\begin{itemdecl}
68296829
template<class... Args>
6830-
void println(ostream& os, @\exposid{format-string}@<Args...> fmt, Args&&... args);
6830+
void println(ostream& os, format_string<Args...> fmt, Args&&... args);
68316831
\end{itemdecl}
68326832

68336833
\begin{itemdescr}
@@ -7700,7 +7700,7 @@
77007700
\indexlibraryglobal{print}%
77017701
\begin{itemdecl}
77027702
template<class... Args>
7703-
void print(@\exposid{format-string}@<Args...> fmt, Args&&... args);
7703+
void print(format_string<Args...> fmt, Args&&... args);
77047704
\end{itemdecl}
77057705

77067706
\begin{itemdescr}
@@ -7715,7 +7715,7 @@
77157715
\indexlibraryglobal{print}%
77167716
\begin{itemdecl}
77177717
template<class... Args>
7718-
void print(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args);
7718+
void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
77197719
\end{itemdecl}
77207720

77217721
\begin{itemdescr}
@@ -7734,7 +7734,7 @@
77347734
\indexlibraryglobal{println}%
77357735
\begin{itemdecl}
77367736
template<class... Args>
7737-
void println(@\exposid{format-string}@<Args...> fmt, Args&&... args);
7737+
void println(format_string<Args...> fmt, Args&&... args);
77387738
\end{itemdecl}
77397739

77407740
\begin{itemdescr}
@@ -7749,7 +7749,7 @@
77497749
\indexlibraryglobal{println}%
77507750
\begin{itemdecl}
77517751
template<class... Args>
7752-
void println(FILE* stream, @\exposid{format-string}@<Args...> fmt, Args&&... args);
7752+
void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
77537753
\end{itemdecl}
77547754

77557755
\begin{itemdescr}

0 commit comments

Comments
 (0)