Skip to content

Commit 20408d8

Browse files
jensmaurerzygoloid
authored andcommitted
[iomanip.syn] Use 'unspecified' instead of type meta-variables.
1 parent 9893b65 commit 20408d8

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

source/iostreams.tex

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4114,32 +4114,31 @@
41144114
\indexheader{iomanip}%
41154115
\begin{codeblock}
41164116
namespace std {
4117-
// types \tcode{T1}, \tcode{T2}, ... are unspecified implementation types
4118-
@\textit{T1}@ resetiosflags(ios_base::fmtflags mask);
4119-
@\textit{T2}@ setiosflags (ios_base::fmtflags mask);
4120-
@\textit{T3}@ setbase(int base);
4121-
template<class charT> @\textit{T4}@ setfill(charT c);
4122-
@\textit{T5}@ setprecision(int n);
4123-
@\textit{T6}@ setw(int n);
4124-
template<class moneyT> @\textit{T7}@ get_money(moneyT& mon, bool intl = false);
4125-
template<class moneyT> @\textit{T8}@ put_money(const moneyT& mon, bool intl = false);
4126-
template<class charT> @\textit{T9}@ get_time(struct tm* tmb, const charT* fmt);
4127-
template<class charT> @\textit{T10}@ put_time(const struct tm* tmb, const charT* fmt);
4117+
@\unspec@ resetiosflags(ios_base::fmtflags mask);
4118+
@\unspec@ setiosflags (ios_base::fmtflags mask);
4119+
@\unspec@ setbase(int base);
4120+
template<class charT> @\unspec@ setfill(charT c);
4121+
@\unspec@ setprecision(int n);
4122+
@\unspec@ setw(int n);
4123+
template<class moneyT> @\unspec@ get_money(moneyT& mon, bool intl = false);
4124+
template<class moneyT> @\unspec@ put_money(const moneyT& mon, bool intl = false);
4125+
template<class charT> @\unspec@ get_time(struct tm* tmb, const charT* fmt);
4126+
template<class charT> @\unspec@ put_time(const struct tm* tmb, const charT* fmt);
41284127

41294128
template<class charT>
4130-
@\textit{T11}@ quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
4129+
@\unspec@ quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
41314130

41324131
template<class charT, class traits, class Allocator>
4133-
@\textit{T12}@ quoted(const basic_string<charT, traits, Allocator>& s,
4134-
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
4132+
@\unspec@ quoted(const basic_string<charT, traits, Allocator>& s,
4133+
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
41354134

41364135
template<class charT, class traits, class Allocator>
4137-
@\textit{T13}@ quoted(basic_string<charT, traits, Allocator>& s,
4138-
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
4136+
@\unspec@ quoted(basic_string<charT, traits, Allocator>& s,
4137+
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
41394138

41404139
template<class charT, class traits>
4141-
@\textit{T14}@ quoted(basic_string_view<charT, traits> s,
4142-
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
4140+
@\unspec@ quoted(basic_string_view<charT, traits> s,
4141+
@\itcorr@ charT delim = charT('"'), charT escape = charT('\\'));
41434142
}
41444143
\end{codeblock}
41454144

0 commit comments

Comments
 (0)