Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12317,7 +12317,7 @@
constexpr multimap(InputIterator first, InputIterator last, const Allocator& a)
: multimap(first, last, Compare(), a) { }
template<@\exposconcept{container-compatible-range}@<value_type> R>
constexpr multimap(from_range_t, R&& rg, const Allocator& a))
constexpr multimap(from_range_t, R&& rg, const Allocator& a)
: multimap(from_range, std::forward<R>(rg), Compare(), a) { }
constexpr multimap(initializer_list<value_type> il, const Allocator& a)
: multimap(il, Compare(), a) { }
Expand Down Expand Up @@ -12724,7 +12724,7 @@
constexpr set(InputIterator first, InputIterator last, const Allocator& a)
: set(first, last, Compare(), a) { }
template<@\exposconcept{container-compatible-range}@<value_type> R>
constexpr set(from_range_t, R&& rg, const Allocator& a))
constexpr set(from_range_t, R&& rg, const Allocator& a)
: set(from_range, std::forward<R>(rg), Compare(), a) { }
constexpr set(initializer_list<value_type> il, const Allocator& a)
: set(il, Compare(), a) { }
Expand Down Expand Up @@ -13089,7 +13089,7 @@
constexpr multiset(InputIterator first, InputIterator last, const Allocator& a)
: multiset(first, last, Compare(), a) { }
template<@\exposconcept{container-compatible-range}@<value_type> R>
constexpr multiset(from_range_t, R&& rg, const Allocator& a))
constexpr multiset(from_range_t, R&& rg, const Allocator& a)
: multiset(from_range, std::forward<R>(rg), Compare(), a) { }
constexpr multiset(initializer_list<value_type> il, const Allocator& a)
: multiset(il, Compare(), a) { }
Expand Down