Skip to content

Commit 1851ef6

Browse files
committed
[flat.*.defn] Remove unnecessary linebreaks
1 parent faa173c commit 1851ef6

File tree

1 file changed

+14
-26
lines changed

1 file changed

+14
-26
lines changed

source/containers.tex

Lines changed: 14 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15839,8 +15839,7 @@
1583915839
flat_multimap(InputIterator first, InputIterator last,
1584015840
const key_compare& comp, const Allocator& a);
1584115841
template<class InputIterator, class Allocator>
15842-
flat_multimap(InputIterator first, InputIterator last,
15843-
const Allocator& a);
15842+
flat_multimap(InputIterator first, InputIterator last, const Allocator& a);
1584415843

1584515844
template<@\exposconcept{container-compatible-range}@<value_type> R>
1584615845
flat_multimap(from_range_t fr, R&& rg)
@@ -15864,12 +15863,11 @@
1586415863
flat_multimap(sorted_equivalent_t, InputIterator first, InputIterator last,
1586515864
const Allocator& a);
1586615865

15867-
flat_multimap(initializer_list<value_type> il,
15868-
const key_compare& comp = key_compare())
15866+
flat_multimap(initializer_list<value_type> il, const key_compare& comp = key_compare())
1586915867
: flat_multimap(il.begin(), il.end(), comp) { }
1587015868
template<class Allocator>
15871-
flat_multimap(initializer_list<value_type> il,
15872-
const key_compare& comp, const Allocator& a);
15869+
flat_multimap(initializer_list<value_type> il, const key_compare& comp,
15870+
const Allocator& a);
1587315871
template<class Allocator>
1587415872
flat_multimap(initializer_list<value_type> il, const Allocator& a);
1587515873

@@ -16351,8 +16349,7 @@
1635116349
explicit flat_set(const Allocator& a);
1635216350

1635316351
template<class InputIterator>
16354-
flat_set(InputIterator first, InputIterator last,
16355-
const key_compare& comp = key_compare())
16352+
flat_set(InputIterator first, InputIterator last, const key_compare& comp = key_compare())
1635616353
: c(), compare(comp)
1635716354
{ insert(first, last); }
1635816355
template<class InputIterator, class Allocator>
@@ -16371,8 +16368,7 @@
1637116368
: flat_set(comp)
1637216369
{ insert_range(std::forward<R>(rg)); }
1637316370
template<@\exposconcept{container-compatible-range}@<value_type> R, class Allocator>
16374-
flat_set(from_range_t, R&& rg, const key_compare& comp,
16375-
const Allocator& a);
16371+
flat_set(from_range_t, R&& rg, const key_compare& comp, const Allocator& a);
1637616372

1637716373
template<class InputIterator>
1637816374
flat_set(sorted_unique_t, InputIterator first, InputIterator last,
@@ -16385,12 +16381,10 @@
1638516381
flat_set(sorted_unique_t, InputIterator first, InputIterator last,
1638616382
const Allocator& a);
1638716383

16388-
flat_set(initializer_list<key_type> il,
16389-
const key_compare& comp = key_compare())
16384+
flat_set(initializer_list<key_type> il, const key_compare& comp = key_compare())
1639016385
: flat_set(il.begin(), il.end(), comp) { }
1639116386
template<class Allocator>
16392-
flat_set(initializer_list<key_type> il,
16393-
const key_compare& comp, const Allocator& a);
16387+
flat_set(initializer_list<key_type> il, const key_compare& comp, const Allocator& a);
1639416388
template<class Allocator>
1639516389
flat_set(initializer_list<key_type> il, const Allocator& a);
1639616390

@@ -16401,8 +16395,7 @@
1640116395
flat_set(sorted_unique_t, initializer_list<key_type> il,
1640216396
const key_compare& comp, const Allocator& a);
1640316397
template<class Allocator>
16404-
flat_set(sorted_unique_t, initializer_list<key_type> il,
16405-
const Allocator& a);
16398+
flat_set(sorted_unique_t, initializer_list<key_type> il, const Allocator& a);
1640616399

1640716400
flat_set& operator=(initializer_list<key_type>);
1640816401

@@ -16965,8 +16958,7 @@
1696516958
flat_multiset(InputIterator first, InputIterator last,
1696616959
const key_compare& comp, const Allocator& a);
1696716960
template<class InputIterator, class Allocator>
16968-
flat_multiset(InputIterator first, InputIterator last,
16969-
const Allocator& a);
16961+
flat_multiset(InputIterator first, InputIterator last, const Allocator& a);
1697016962

1697116963
template<@\exposconcept{container-compatible-range}@<value_type> R>
1697216964
flat_multiset(from_range_t fr, R&& rg)
@@ -16978,8 +16970,7 @@
1697816970
: flat_multiset(comp)
1697916971
{ insert_range(std::forward<R>(rg)); }
1698016972
template<@\exposconcept{container-compatible-range}@<value_type> R, class Allocator>
16981-
flat_multiset(from_range_t, R&& rg, const key_compare& comp,
16982-
const Allocator& a);
16973+
flat_multiset(from_range_t, R&& rg, const key_compare& comp, const Allocator& a);
1698316974

1698416975
template<class InputIterator>
1698516976
flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last,
@@ -16992,12 +16983,10 @@
1699216983
flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last,
1699316984
const Allocator& a);
1699416985

16995-
flat_multiset(initializer_list<key_type> il,
16996-
const key_compare& comp = key_compare())
16986+
flat_multiset(initializer_list<key_type> il, const key_compare& comp = key_compare())
1699716987
: flat_multiset(il.begin(), il.end(), comp) { }
1699816988
template<class Allocator>
16999-
flat_multiset(initializer_list<key_type> il,
17000-
const key_compare& comp, const Allocator& a);
16989+
flat_multiset(initializer_list<key_type> il, const key_compare& comp, const Allocator& a);
1700116990
template<class Allocator>
1700216991
flat_multiset(initializer_list<key_type> il, const Allocator& a);
1700316992

@@ -17008,8 +16997,7 @@
1700816997
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il,
1700916998
const key_compare& comp, const Allocator& a);
1701016999
template<class Allocator>
17011-
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il,
17012-
const Allocator& a);
17000+
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il, const Allocator& a);
1701317001

1701417002
flat_multiset& operator=(initializer_list<key_type>);
1701517003

0 commit comments

Comments
 (0)