Skip to content

Commit eb17276

Browse files
authored
[unord.map.overview] Fix indentation (#8365)
1 parent cab90b3 commit eb17276

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/containers.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13489,8 +13489,8 @@
1348913489

1349013490
template<@\exposconcept{container-compatible-range}@<value_type> R>
1349113491
constexpr unordered_map(from_range_t, R&& rg, size_type n = @\seebelow@,
13492-
const hasher& hf = hasher(), const key_equal& eql = key_equal(),
13493-
const allocator_type& a = allocator_type());
13492+
const hasher& hf = hasher(), const key_equal& eql = key_equal(),
13493+
const allocator_type& a = allocator_type());
1349413494
constexpr unordered_map(const unordered_map&);
1349513495
constexpr unordered_map(unordered_map&&);
1349613496
constexpr explicit unordered_map(const Allocator&);
@@ -13510,7 +13510,7 @@
1351013510
: unordered_map(f, l, n, hasher(), key_equal(), a) { }
1351113511
template<class InputIterator>
1351213512
constexpr unordered_map(InputIterator f, InputIterator l, size_type n, const hasher& hf,
13513-
const allocator_type& a)
13513+
const allocator_type& a)
1351413514
: unordered_map(f, l, n, hf, key_equal(), a) { }
1351513515
template<@\exposconcept{container-compatible-range}@<value_type> R>
1351613516
constexpr unordered_map(from_range_t, R&& rg, size_type n, const allocator_type& a)
@@ -13523,7 +13523,7 @@
1352313523
const allocator_type& a)
1352413524
: unordered_map(il, n, hasher(), key_equal(), a) { }
1352513525
constexpr unordered_map(initializer_list<value_type> il, size_type n, const hasher& hf,
13526-
const allocator_type& a)
13526+
const allocator_type& a)
1352713527
: unordered_map(il, n, hf, key_equal(), a) { }
1352813528
constexpr ~unordered_map();
1352913529
constexpr unordered_map& operator=(const unordered_map&);

0 commit comments

Comments
 (0)