Skip to content

Commit 69fe27f

Browse files
committed
[range.slide.view] Fix names of reserve_hint overloads
Fixes #8585
1 parent 417bf3b commit 69fe27f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/ranges.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14958,8 +14958,8 @@
1495814958
constexpr auto size() requires @\libconcept{sized_range}@<V>;
1495914959
constexpr auto size() const requires @\libconcept{sized_range}@<const V>;
1496014960

14961-
constexpr auto reserve_hintsize() requires @\libconcept{approximately_sized_range}@<V>;
14962-
constexpr auto reserve_hintsize() const requires @\libconcept{approximately_sized_range}@<const V>;
14961+
constexpr auto reserve_hint() requires @\libconcept{approximately_sized_range}@<V>;
14962+
constexpr auto reserve_hint() const requires @\libconcept{approximately_sized_range}@<const V>;
1496314963
};
1496414964

1496514965
template<class R>

0 commit comments

Comments
 (0)