Skip to content

Commit b287510

Browse files
committed
fixup: forgotten "map" constructors
1 parent a341abe commit b287510

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
@@ -6590,8 +6590,8 @@
65906590
map(const map& x);
65916591
map(map&& x);
65926592
explicit map(const Allocator&);
6593-
map(const map&, const Allocator&);
6594-
map(map&&, const Allocator&);
6593+
map(const map&, const type_identity_t<Allocator>&);
6594+
map(map&&, const type_identity_t<Allocator>&);
65956595
map(initializer_list<value_type>,
65966596
const Compare& = Compare(),
65976597
const Allocator& = Allocator());

0 commit comments

Comments
 (0)