Skip to content

Commit dbb1ea9

Browse files
jensmaurertkoeppe
authored andcommitted
[unord.map.overview], [unord.multimap.overview] Use iter_val_t instead of iter_value_t (#1772)
1 parent b07fd6c commit dbb1ea9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/containers.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7698,7 +7698,7 @@
76987698
class Allocator = allocator<iter_to_alloc_t<InputIterator>>>
76997699
unordered_map(InputIterator, InputIterator, typename @\seebelow@::size_type = @\seebelow@,
77007700
Hash = Hash(), Pred = Pred(), Allocator = Allocator())
7701-
-> unordered_map<iter_key_t<InputIterator>, iter_value_t<InputIterator>, Hash, Pred,
7701+
-> unordered_map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Hash, Pred,
77027702
Allocator>;
77037703

77047704
template<class Key, class T, class Hash = hash<Key>,
@@ -8235,7 +8235,7 @@
82358235
unordered_multimap(InputIterator, InputIterator,
82368236
typename @\seebelow@::size_type = @\seebelow@,
82378237
Hash = Hash(), Pred = Pred(), Allocator = Allocator())
8238-
-> unordered_multimap<iter_key_t<InputIterator>, iter_value_t<InputIterator>, Hash, Pred,
8238+
-> unordered_multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Hash, Pred,
82398239
Allocator>;
82408240

82418241
template<class Key, class T, class Hash = hash<Key>,

0 commit comments

Comments
 (0)