Skip to content

Commit ecb4353

Browse files
authored
[multimap.overview,set.overview,multiset.overview] Fix typos of constructors
1 parent ed15cb5 commit ecb4353

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) { }
@@ -12724,7 +12724,7 @@
1272412724
constexpr set(InputIterator first, InputIterator last, const Allocator& a)
1272512725
: set(first, last, Compare(), a) { }
1272612726
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)
1272812728
: set(from_range, std::forward<R>(rg), Compare(), a) { }
1272912729
constexpr set(initializer_list<value_type> il, const Allocator& a)
1273012730
: set(il, Compare(), a) { }
@@ -13089,7 +13089,7 @@
1308913089
constexpr multiset(InputIterator first, InputIterator last, const Allocator& a)
1309013090
: multiset(first, last, Compare(), a) { }
1309113091
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)
1309313093
: multiset(from_range, std::forward<R>(rg), Compare(), a) { }
1309413094
constexpr multiset(initializer_list<value_type> il, const Allocator& a)
1309513095
: multiset(il, Compare(), a) { }

0 commit comments

Comments
 (0)