Skip to content

Commit 7ba83f9

Browse files
authored
[{multimap,multiset,set}.overview] Fix typos of constructors (#8237)
1 parent 76b2c46 commit 7ba83f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/containers.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12317,7 +12317,7 @@
1231712317
constexpr multimap(InputIterator first, InputIterator last, const Allocator& a)
1231812318
: multimap(first, last, Compare(), a) { }
1231912319
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)
1232112321
: multimap(from_range, std::forward<R>(rg), Compare(), a) { }
1232212322
constexpr multimap(initializer_list<value_type> il, const Allocator& a)
1232312323
: multimap(il, Compare(), a) { }
@@ -12725,7 +12725,7 @@
1272512725
constexpr set(InputIterator first, InputIterator last, const Allocator& a)
1272612726
: set(first, last, Compare(), a) { }
1272712727
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)
1272912729
: set(from_range, std::forward<R>(rg), Compare(), a) { }
1273012730
constexpr set(initializer_list<value_type> il, const Allocator& a)
1273112731
: set(il, Compare(), a) { }
@@ -13090,7 +13090,7 @@
1309013090
constexpr multiset(InputIterator first, InputIterator last, const Allocator& a)
1309113091
: multiset(first, last, Compare(), a) { }
1309213092
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)
1309413094
: multiset(from_range, std::forward<R>(rg), Compare(), a) { }
1309513095
constexpr multiset(initializer_list<value_type> il, const Allocator& a)
1309613096
: multiset(il, Compare(), a) { }

0 commit comments

Comments
 (0)