|
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) { } |
|
12725 | 12725 | constexpr set(InputIterator first, InputIterator last, const Allocator& a) |
12726 | 12726 | : set(first, last, Compare(), a) { } |
12727 | 12727 | template<@\exposconcept{container-compatible-range}@<value_type> R> |
12728 | | - constexpr set(from_range_t, R&& rg, const Allocator& a)) |
| 12728 | + constexpr set(from_range_t, R&& rg, const Allocator& a) |
12729 | 12729 | : set(from_range, std::forward<R>(rg), Compare(), a) { } |
12730 | 12730 | constexpr set(initializer_list<value_type> il, const Allocator& a) |
12731 | 12731 | : set(il, Compare(), a) { } |
|
13090 | 13090 | constexpr multiset(InputIterator first, InputIterator last, const Allocator& a) |
13091 | 13091 | : multiset(first, last, Compare(), a) { } |
13092 | 13092 | template<@\exposconcept{container-compatible-range}@<value_type> R> |
13093 | | - constexpr multiset(from_range_t, R&& rg, const Allocator& a)) |
| 13093 | + constexpr multiset(from_range_t, R&& rg, const Allocator& a) |
13094 | 13094 | : multiset(from_range, std::forward<R>(rg), Compare(), a) { } |
13095 | 13095 | constexpr multiset(initializer_list<value_type> il, const Allocator& a) |
13096 | 13096 | : multiset(il, Compare(), a) { } |
|
0 commit comments