Skip to content
Merged
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
10 changes: 5 additions & 5 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -18458,7 +18458,7 @@

constexpr flat_multimap(sorted_equivalent_t,
key_container_type key_cont, mapped_container_type mapped_cont,
const key_compare& comp = key_compare());
const key_compare& comp = key_compare());

template<class InputIterator>
constexpr flat_multimap(InputIterator first, InputIterator last,
Expand All @@ -18480,11 +18480,11 @@

constexpr flat_multimap(initializer_list<value_type> il,
const key_compare& comp = key_compare())
: flat_multimap(il.begin(), il.end(), comp) { }
: flat_multimap(il.begin(), il.end(), comp) { }

constexpr flat_multimap(sorted_equivalent_t, initializer_list<value_type> il,
const key_compare& comp = key_compare())
: flat_multimap(sorted_equivalent, il.begin(), il.end(), comp) { }
: flat_multimap(sorted_equivalent, il.begin(), il.end(), comp) { }

// \ref{flat.multimap.cons.alloc}, constructors with allocators

Expand Down Expand Up @@ -18717,10 +18717,10 @@

template<class Key, class T, class Compare = less<Key>>
flat_multimap(sorted_equivalent_t, initializer_list<pair<Key, T>>, Compare = Compare())
-> flat_multimap<Key, T, Compare>;
-> flat_multimap<Key, T, Compare>;

template<class Key, class T, class Compare, class KeyContainer, class MappedContainer,
class Allocator>
class Allocator>
struct uses_allocator<flat_multimap<Key, T, Compare, KeyContainer, MappedContainer>,
Allocator>
: bool_constant<uses_allocator_v<KeyContainer, Allocator> &&
Expand Down
Loading