Skip to content

Commit ed15cb5

Browse files
EienMikujwakely
authored andcommitted
[map.overview] Fix typo of constructor of map
1 parent 8d0144f commit ed15cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/containers.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11575,7 +11575,7 @@
1157511575
constexpr map(InputIterator first, InputIterator last, const Allocator& a)
1157611576
: map(first, last, Compare(), a) { }
1157711577
template<@\exposconcept{container-compatible-range}@<value_type> R>
11578-
constexpr map(from_range_t, R&& rg, const Allocator& a))
11578+
constexpr map(from_range_t, R&& rg, const Allocator& a)
1157911579
: map(from_range, std::forward<R>(rg), Compare(), a) { }
1158011580
constexpr map(initializer_list<value_type> il, const Allocator& a)
1158111581
: map(il, Compare(), a) { }

0 commit comments

Comments
 (0)