@@ -14306,19 +14306,19 @@
14306
14306
constexpr unordered_multimap(InputIterator f, InputIterator l, size_type n,
14307
14307
const hasher& hf, const allocator_type& a)
14308
14308
: 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) { }
14317
14317
constexpr unordered_multimap(initializer_list<value_type> il, size_type n,
14318
14318
const allocator_type& a)
14319
14319
: unordered_multimap(il, n, hasher(), key_equal(), a) { }
14320
14320
constexpr unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf,
14321
- const allocator_type& a)
14321
+ const allocator_type& a)
14322
14322
: unordered_multimap(il, n, hf, key_equal(), a) { }
14323
14323
constexpr ~unordered_multimap();
14324
14324
constexpr unordered_multimap& operator=(const unordered_multimap&);
0 commit comments