Skip to content

Commit 7e2ff46

Browse files
authored
[unord.multimap.overview] Fix indentation (#8189)
1 parent 41014b4 commit 7e2ff46

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/containers.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14306,19 +14306,19 @@
1430614306
constexpr unordered_multimap(InputIterator f, InputIterator l, size_type n,
1430714307
const hasher& hf, const allocator_type& a)
1430814308
: unordered_multimap(f, l, n, hf, key_equal(), a) { }
14309-
template<@\exposconcept{container-compatible-range}@<value_type> R>
14310-
constexpr unordered_multimap(from_range_t, R&& rg, size_type n, const allocator_type& a)
14311-
: unordered_multimap(from_range, std::forward<R>(rg),
14312-
n, hasher(), key_equal(), a) { }
14313-
template<@\exposconcept{container-compatible-range}@<value_type> R>
14314-
constexpr unordered_multimap(from_range_t, R&& rg, size_type n, const hasher& hf,
14315-
const allocator_type& a)
14316-
: unordered_multimap(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { }
14309+
template<@\exposconcept{container-compatible-range}@<value_type> R>
14310+
constexpr unordered_multimap(from_range_t, R&& rg, size_type n, const allocator_type& a)
14311+
: unordered_multimap(from_range, std::forward<R>(rg),
14312+
n, hasher(), key_equal(), a) { }
14313+
template<@\exposconcept{container-compatible-range}@<value_type> R>
14314+
constexpr unordered_multimap(from_range_t, R&& rg, size_type n, const hasher& hf,
14315+
const allocator_type& a)
14316+
: unordered_multimap(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { }
1431714317
constexpr unordered_multimap(initializer_list<value_type> il, size_type n,
1431814318
const allocator_type& a)
1431914319
: unordered_multimap(il, n, hasher(), key_equal(), a) { }
1432014320
constexpr unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf,
14321-
const allocator_type& a)
14321+
const allocator_type& a)
1432214322
: unordered_multimap(il, n, hf, key_equal(), a) { }
1432314323
constexpr ~unordered_multimap();
1432414324
constexpr unordered_multimap& operator=(const unordered_multimap&);

0 commit comments

Comments
 (0)