Skip to content

Commit 4b37647

Browse files
committed
[input.output] Remove unnecessary linebreaks from synopses
1 parent ff592bd commit 4b37647

File tree

1 file changed

+22
-37
lines changed

1 file changed

+22
-37
lines changed

source/iostreams.tex

Lines changed: 22 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -225,17 +225,13 @@
225225
template<class charT, class traits = char_traits<charT>>
226226
class basic_iostream;
227227

228-
template<class charT, class traits = char_traits<charT>,
229-
class Allocator = allocator<charT>>
228+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
230229
class basic_stringbuf;
231-
template<class charT, class traits = char_traits<charT>,
232-
class Allocator = allocator<charT>>
230+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
233231
class basic_istringstream;
234-
template<class charT, class traits = char_traits<charT>,
235-
class Allocator = allocator<charT>>
232+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
236233
class basic_ostringstream;
237-
template<class charT, class traits = char_traits<charT>,
238-
class Allocator = allocator<charT>>
234+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
239235
class basic_stringstream;
240236

241237
template<class charT, class traits = char_traits<charT>>
@@ -256,11 +252,9 @@
256252
template<class charT, class traits = char_traits<charT>>
257253
class basic_fstream;
258254

259-
template<class charT, class traits = char_traits<charT>,
260-
class Allocator = allocator<charT>>
255+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
261256
class basic_syncbuf;
262-
template<class charT, class traits = char_traits<charT>,
263-
class Allocator = allocator<charT>>
257+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
264258
class basic_osyncstream;
265259

266260
template<class charT, class traits = char_traits<charT>>
@@ -7982,8 +7976,7 @@
79827976
\begin{codeblock}
79837977
namespace std {
79847978
// \ref{stringbuf}, class template \tcode{basic_stringbuf}
7985-
template<class charT, class traits = char_traits<charT>,
7986-
class Allocator = allocator<charT>>
7979+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
79877980
class basic_stringbuf;
79887981

79897982
template<class charT, class traits, class Allocator>
@@ -7994,8 +7987,7 @@
79947987
using wstringbuf = basic_stringbuf<wchar_t>;
79957988

79967989
// \ref{istringstream}, class template \tcode{basic_istringstream}
7997-
template<class charT, class traits = char_traits<charT>,
7998-
class Allocator = allocator<charT>>
7990+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
79997991
class basic_istringstream;
80007992

80017993
template<class charT, class traits, class Allocator>
@@ -8006,8 +7998,7 @@
80067998
using wistringstream = basic_istringstream<wchar_t>;
80077999

80088000
// \ref{ostringstream}, class template \tcode{basic_ostringstream}
8009-
template<class charT, class traits = char_traits<charT>,
8010-
class Allocator = allocator<charT>>
8001+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
80118002
class basic_ostringstream;
80128003

80138004
template<class charT, class traits, class Allocator>
@@ -8018,8 +8009,7 @@
80188009
using wostringstream = basic_ostringstream<wchar_t>;
80198010

80208011
// \ref{stringstream}, class template \tcode{basic_stringstream}
8021-
template<class charT, class traits = char_traits<charT>,
8022-
class Allocator = allocator<charT>>
8012+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
80238013
class basic_stringstream;
80248014

80258015
template<class charT, class traits, class Allocator>
@@ -8044,8 +8034,7 @@
80448034
\indexlibraryglobal{basic_stringbuf}%
80458035
\begin{codeblock}
80468036
namespace std {
8047-
template<class charT, class traits = char_traits<charT>,
8048-
class Allocator = allocator<charT>>
8037+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
80498038
class basic_stringbuf : public basic_streambuf<charT, traits> {
80508039
public:
80518040
using char_type = charT;
@@ -8905,8 +8894,7 @@
89058894
\indexlibraryglobal{basic_istringstream}%
89068895
\begin{codeblock}
89078896
namespace std {
8908-
template<class charT, class traits = char_traits<charT>,
8909-
class Allocator = allocator<charT>>
8897+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
89108898
class basic_istringstream : public basic_istream<charT, traits> {
89118899
public:
89128900
using char_type = charT;
@@ -9277,8 +9265,7 @@
92779265
\indexlibraryglobal{basic_ostringstream}%
92789266
\begin{codeblock}
92799267
namespace std {
9280-
template<class charT, class traits = char_traits<charT>,
9281-
class Allocator = allocator<charT>>
9268+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
92829269
class basic_ostringstream : public basic_ostream<charT, traits> {
92839270
public:
92849271
using char_type = charT;
@@ -9649,8 +9636,7 @@
96499636
\indexlibraryglobal{basic_stringstream}%
96509637
\begin{codeblock}
96519638
namespace std {
9652-
template<class charT, class traits = char_traits<charT>,
9653-
class Allocator = allocator<charT>>
9639+
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
96549640
class basic_stringstream : public basic_iostream<charT, traits> {
96559641
public:
96569642
using char_type = charT;
@@ -13593,7 +13579,10 @@
1359313579

1359413580
\pnum
1359513581
\begin{note}
13596-
Class \tcode{path} is used to support the differences between the string types used by different operating systems to represent pathnames, and to perform conversions between encodings when necessary.
13582+
Class \tcode{path} is used to support the differences
13583+
between the string types used by different operating systems
13584+
to represent pathnames,
13585+
and to perform conversions between encodings when necessary.
1359713586
\end{note}
1359813587

1359913588
\pnum
@@ -14690,10 +14679,8 @@
1469014679

1469114680
\indexlibrarymember{string}{path}%
1469214681
\begin{itemdecl}
14693-
template<class EcharT, class traits = char_traits<EcharT>,
14694-
class Allocator = allocator<EcharT>>
14695-
basic_string<EcharT, traits, Allocator>
14696-
string(const Allocator& a = Allocator()) const;
14682+
template<class EcharT, class traits = char_traits<EcharT>, class Allocator = allocator<EcharT>>
14683+
basic_string<EcharT, traits, Allocator> string(const Allocator& a = Allocator()) const;
1469714684
\end{itemdecl}
1469814685

1469914686
\begin{itemdescr}
@@ -14767,10 +14754,8 @@
1476714754

1476814755
\indexlibrarymember{generic_string}{path}%
1476914756
\begin{itemdecl}
14770-
template<class EcharT, class traits = char_traits<EcharT>,
14771-
class Allocator = allocator<EcharT>>
14772-
basic_string<EcharT, traits, Allocator>
14773-
generic_string(const Allocator& a = Allocator()) const;
14757+
template<class EcharT, class traits = char_traits<EcharT>, class Allocator = allocator<EcharT>>
14758+
basic_string<EcharT, traits, Allocator> generic_string(const Allocator& a = Allocator()) const;
1477414759
\end{itemdecl}
1477514760

1477614761
\begin{itemdescr}

0 commit comments

Comments
 (0)