Skip to content

Commit d8975ea

Browse files
committed
Reverted too mucb
1 parent 60e501e commit d8975ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__ranges/iota_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ class iota_view : public view_interface<iota_view<_Start, _BoundSentinel>> {
355355

356356
_LIBCPP_HIDE_FROM_ABI constexpr auto size() const
357357
requires(same_as<_Start, _BoundSentinel> && __advanceable<_Start>) ||
358-
(integral<_Start> && integral<_BoundSentinel>) || sized_sentinel_for<_BoundSentinel, _Start>
358+
(__integer_like<_Start> && __integer_like<_BoundSentinel>) || sized_sentinel_for<_BoundSentinel, _Start>
359359
{
360360
if constexpr (__integer_like<_Start> && __integer_like<_BoundSentinel>) {
361361
return (__value_ < 0)

0 commit comments

Comments
 (0)