@@ -19125,11 +19125,11 @@
19125
19125
decltype(auto) visit_format_arg(Visitor&& vis, basic_format_arg<Context> arg);
19126
19126
19127
19127
// \ref{format.arg.store}, class template \exposid{format-arg-store}
19128
- template<class Context, class... Args> struct @\placeholder{format-arg-store}@; // \expos
19128
+ template<class Context, class... Args> class @\placeholder{format-arg-store}@; // \expos
19129
19129
19130
19130
template<class Context = format_context, class... Args>
19131
19131
@\placeholder{format-arg-store}@<Context, Args...>
19132
- make_format_args(const Args&... args );
19132
+ make_format_args(const Args&... fmt_args );
19133
19133
template<class... Args>
19134
19134
@\placeholder{format-arg-store}@<wformat_context, Args...>
19135
19135
make_wformat_args(const Args&... args);
20901
20901
\begin{codeblock}
20902
20902
namespace std {
20903
20903
template<class Context, class... Args>
20904
- struct @\placeholder {format-arg-store}@ { // \expos
20905
- array<basic_format_arg<Context>, sizeof...(Args)> args;
20904
+ class @\exposid {format-arg-store}@ { // \expos
20905
+ array<basic_format_arg<Context>, sizeof...(Args)> @\exposid{ args}@; // \expos
20906
20906
};
20907
20907
}
20908
20908
\end{codeblock}
20913
20913
\indexlibraryglobal{make_format_args}%
20914
20914
\begin{itemdecl}
20915
20915
template<class Context = format_context, class... Args>
20916
- @\placeholder{format-arg-store}@<Context, Args...> make_format_args(const Args&... args );
20916
+ @\placeholder{format-arg-store}@<Context, Args...> make_format_args(const Args&... fmt_args );
20917
20917
\end{itemdecl}
20918
20918
20919
20919
\begin{itemdescr}
20926
20926
20927
20927
\pnum
20928
20928
\returns
20929
- \tcode{\{basic_format_arg<Context>(args)...\}}.
20929
+ An object of type \tcode{\exposid{format-arg-store}<Context, Args...>}
20930
+ whose \exposid{args} data member is initialized with
20931
+ \tcode{\{basic_format_arg<Context>(fmt_args)...\}}.
20930
20932
\end{itemdescr}
20931
20933
20932
20934
\indexlibraryglobal{make_wformat_args}%
0 commit comments