Skip to content

Commit 2868ab4

Browse files
blackteahamburgertkoeppe
authored andcommitted
[input.output] Blank line between the private and public members
1 parent 8094f86 commit 2868ab4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

source/iostreams.tex

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1116,6 +1116,7 @@
11161116
Init(const Init&) = default;
11171117
~Init();
11181118
Init& operator=(const Init&) = default;
1119+
11191120
private:
11201121
static int init_cnt; // \expos
11211122
};
@@ -1636,6 +1637,7 @@
16361637
// \ref{fpos.members}, members
16371638
stateT state() const;
16381639
void state(stateT);
1640+
16391641
private:
16401642
stateT st; // \expos
16411643
};
@@ -4476,6 +4478,7 @@
44764478
template<class charT, class traits>
44774479
class basic_istream<charT, traits>::sentry {
44784480
bool ok_; // \expos
4481+
44794482
public:
44804483
explicit sentry(basic_istream& is, bool noskipws = false);
44814484
~sentry();
@@ -6143,6 +6146,7 @@
61436146
template<class charT, class traits>
61446147
class basic_ostream<charT, traits>::sentry {
61456148
bool ok_; // \expos
6149+
61466150
public:
61476151
explicit sentry(basic_ostream& os);
61486152
~sentry();
@@ -9765,6 +9769,7 @@
97659769
ios_base::openmode which = ios_base::in | ios_base::out) override;
97669770
pos_type seekpos(pos_type sp,
97679771
ios_base::openmode which = ios_base::in | ios_base::out) override;
9772+
97689773
private:
97699774
ios_base::openmode @\exposid{mode}@; // \expos
97709775
std::span<charT> @\exposid{buf}@; // \expos
@@ -10271,6 +10276,7 @@
1027110276

1027210277
std::span<charT> span() const noexcept;
1027310278
void span(std::span<charT> s) noexcept;
10279+
1027410280
private:
1027510281
basic_spanbuf<charT, traits> sb; // \expos
1027610282
};
@@ -10409,6 +10415,7 @@
1040910415

1041010416
std::span<charT> span() const noexcept;
1041110417
void span(std::span<charT> s) noexcept;
10418+
1041210419
private:
1041310420
basic_spanbuf<charT, traits> sb; // \expos
1041410421
};
@@ -11412,6 +11419,7 @@
1141211419
void open(const string& s, ios_base::openmode mode = ios_base::in);
1141311420
void open(const filesystem::path& s, ios_base::openmode mode = ios_base::in);
1141411421
void close();
11422+
1141511423
private:
1141611424
basic_filebuf<charT, traits> sb; // \expos
1141711425
};
@@ -11657,6 +11665,7 @@
1165711665
void open(const string& s, ios_base::openmode mode = ios_base::out);
1165811666
void open(const filesystem::path& s, ios_base::openmode mode = ios_base::out);
1165911667
void close();
11668+
1166011669
private:
1166111670
basic_filebuf<charT, traits> sb; // \expos
1166211671
};

0 commit comments

Comments
 (0)