|
12317 | 12317 | constexpr multimap(InputIterator first, InputIterator last, const Allocator& a)
|
12318 | 12318 | : multimap(first, last, Compare(), a) { }
|
12319 | 12319 | template<@\exposconcept{container-compatible-range}@<value_type> R>
|
12320 |
| - constexpr multimap(from_range_t, R&& rg, const Allocator& a)) |
| 12320 | + constexpr multimap(from_range_t, R&& rg, const Allocator& a) |
12321 | 12321 | : multimap(from_range, std::forward<R>(rg), Compare(), a) { }
|
12322 | 12322 | constexpr multimap(initializer_list<value_type> il, const Allocator& a)
|
12323 | 12323 | : multimap(il, Compare(), a) { }
|
|
12724 | 12724 | constexpr set(InputIterator first, InputIterator last, const Allocator& a)
|
12725 | 12725 | : set(first, last, Compare(), a) { }
|
12726 | 12726 | template<@\exposconcept{container-compatible-range}@<value_type> R>
|
12727 |
| - constexpr set(from_range_t, R&& rg, const Allocator& a)) |
| 12727 | + constexpr set(from_range_t, R&& rg, const Allocator& a) |
12728 | 12728 | : set(from_range, std::forward<R>(rg), Compare(), a) { }
|
12729 | 12729 | constexpr set(initializer_list<value_type> il, const Allocator& a)
|
12730 | 12730 | : set(il, Compare(), a) { }
|
|
13089 | 13089 | constexpr multiset(InputIterator first, InputIterator last, const Allocator& a)
|
13090 | 13090 | : multiset(first, last, Compare(), a) { }
|
13091 | 13091 | template<@\exposconcept{container-compatible-range}@<value_type> R>
|
13092 |
| - constexpr multiset(from_range_t, R&& rg, const Allocator& a)) |
| 13092 | + constexpr multiset(from_range_t, R&& rg, const Allocator& a) |
13093 | 13093 | : multiset(from_range, std::forward<R>(rg), Compare(), a) { }
|
13094 | 13094 | constexpr multiset(initializer_list<value_type> il, const Allocator& a)
|
13095 | 13095 | : multiset(il, Compare(), a) { }
|
|
0 commit comments