Skip to content

Commit a02728c

Browse files
committed
[flat.*set] Remove further linebreaks
1 parent 1851ef6 commit a02728c

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

source/containers.tex

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16378,8 +16378,7 @@
1637816378
flat_set(sorted_unique_t, InputIterator first, InputIterator last,
1637916379
const key_compare& comp, const Allocator& a);
1638016380
template<class InputIterator, class Allocator>
16381-
flat_set(sorted_unique_t, InputIterator first, InputIterator last,
16382-
const Allocator& a);
16381+
flat_set(sorted_unique_t, InputIterator first, InputIterator last, const Allocator& a);
1638316382

1638416383
flat_set(initializer_list<key_type> il, const key_compare& comp = key_compare())
1638516384
: flat_set(il.begin(), il.end(), comp) { }
@@ -16609,8 +16608,7 @@
1660916608
template<class Allocator>
1661016609
explicit flat_set(const Allocator& a);
1661116610
template<class InputIterator, class Allocator>
16612-
flat_set(InputIterator first, InputIterator last,
16613-
const key_compare& comp, const Allocator& a);
16611+
flat_set(InputIterator first, InputIterator last, const key_compare& comp, const Allocator& a);
1661416612
template<class InputIterator, class Allocator>
1661516613
flat_set(InputIterator first, InputIterator last, const Allocator& a);
1661616614
template<@\exposconcept{container-compatible-range}@<value_type> R, class Allocator>
@@ -17211,30 +17209,25 @@
1721117209
flat_multiset(InputIterator first, InputIterator last,
1721217210
const key_compare& comp, const Allocator& a);
1721317211
template<class InputIterator, class Allocator>
17214-
flat_multiset(InputIterator first, InputIterator last,
17215-
const Allocator& a);
17212+
flat_multiset(InputIterator first, InputIterator last, const Allocator& a);
1721617213
template<@\exposconcept{container-compatible-range}@<value_type> R, class Allocator>
1721717214
flat_multiset(from_range_t, R&& rg, const Allocator& a);
1721817215
template<@\exposconcept{container-compatible-range}@<value_type> R, class Allocator>
17219-
flat_multiset(from_range_t, R&& rg, const key_compare& comp,
17220-
const Allocator& a);
17216+
flat_multiset(from_range_t, R&& rg, const key_compare& comp, const Allocator& a);
1722117217
template<class InputIterator, class Allocator>
1722217218
flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last,
1722317219
const key_compare& comp, const Allocator& a);
1722417220
template<class InputIterator, class Allocator>
17225-
flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last,
17226-
const Allocator& a);
17221+
flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last, const Allocator& a);
1722717222
template<class Allocator>
17228-
flat_multiset(initializer_list<key_type> il,
17229-
const key_compare& comp, const Allocator& a);
17223+
flat_multiset(initializer_list<key_type> il, const key_compare& comp, const Allocator& a);
1723017224
template<class Allocator>
1723117225
flat_multiset(initializer_list<key_type> il, const Allocator& a);
1723217226
template<class Allocator>
1723317227
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il,
1723417228
const key_compare& comp, const Allocator& a);
1723517229
template<class Allocator>
17236-
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il,
17237-
const Allocator& a);
17230+
flat_multiset(sorted_equivalent_t, initializer_list<key_type> il, const Allocator& a);
1723817231
\end{itemdecl}
1723917232

1724017233
\begin{itemdescr}

0 commit comments

Comments
 (0)