@@ -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