Skip to content

Commit bbf85f4

Browse files
blackteahamburgertkoeppe
authored andcommitted
[containers] Blank line between the private and public members
1 parent 8c60752 commit bbf85f4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

source/containers.tex

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9183,6 +9183,7 @@
91839183
class @\libmember{reference}{vector<bool>}@ {
91849184
friend class vector;
91859185
constexpr reference() noexcept;
9186+
91869187
public:
91879188
constexpr reference(const reference&) = default;
91889189
constexpr ~reference();
@@ -9642,6 +9643,7 @@
96429643
protected:
96439644
Compare comp;
96449645
value_compare(Compare c) : comp(c) {}
9646+
96459647
public:
96469648
bool operator()(const value_type& x, const value_type& y) const {
96479649
return comp(x.first, y.first);
@@ -10224,6 +10226,7 @@
1022410226
protected:
1022510227
Compare comp;
1022610228
value_compare(Compare c) : comp(c) { }
10229+
1022710230
public:
1022810231
bool operator()(const value_type& x, const value_type& y) const {
1022910232
return comp(x.first, y.first);
@@ -14709,6 +14712,7 @@
1470914712
private:
1471014713
key_compare comp; // \expos
1471114714
value_compare(key_compare c) : comp(c) { } // \expos
14715+
1471214716
public:
1471314717
bool operator()(const_reference x, const_reference y) const {
1471414718
return comp(x.first, y.first);
@@ -15851,6 +15855,7 @@
1585115855
private:
1585215856
key_compare comp; // \expos
1585315857
value_compare(key_compare c) : comp(c) { } // \expos
15858+
1585415859
public:
1585515860
bool operator()(const_reference x, const_reference y) const {
1585615861
return comp(x.first, y.first);

0 commit comments

Comments
 (0)