@@ -447,31 +447,31 @@ class concat_view<_Views...>::__iterator : public __concat_view_iterator_categor
447
447
}
448
448
449
449
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator <(const __iterator& __x, const __iterator& __y)
450
- requires (random_access_range<__maybe_const< _Const, _Views> > && ...)
450
+ requires (__all_random_access< _Const, _Views> && ...)
451
451
{
452
452
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (!__x.__it_ .valueless_by_exception () && !__y.__it_ .valueless_by_exception (),
453
453
" Trying to compare a valueless iterator of concat_view." );
454
454
return __x.__it_ < __y.__it_ ;
455
455
}
456
456
457
457
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator >(const __iterator& __x, const __iterator& __y)
458
- requires (random_access_range<__maybe_const< _Const, _Views> > && ...)
458
+ requires (__all_random_access< _Const, _Views> && ...)
459
459
{
460
460
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (!__x.__it_ .valueless_by_exception () && !__y.__it_ .valueless_by_exception (),
461
461
" Trying to compare a valueless iterator of concat_view." );
462
462
return __x.__it_ > __y.__it_ ;
463
463
}
464
464
465
465
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator <=(const __iterator& __x, const __iterator& __y)
466
- requires (random_access_range<__maybe_const< _Const, _Views> > && ...)
466
+ requires (__all_random_access< _Const, _Views> && ...)
467
467
{
468
468
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (!__x.__it_ .valueless_by_exception () && !__y.__it_ .valueless_by_exception (),
469
469
" Trying to compare a valueless iterator of concat_view." );
470
470
return __x.__it_ <= __y.__it_ ;
471
471
}
472
472
473
473
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator >=(const __iterator& __x, const __iterator& __y)
474
- requires (random_access_range<__maybe_const< _Const, _Views> > && ...)
474
+ requires (__all_random_access< _Const, _Views> && ...)
475
475
{
476
476
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (!__x.__it_ .valueless_by_exception () && !__y.__it_ .valueless_by_exception (),
477
477
" Trying to compare a valueless iterator of concat_view." );
0 commit comments