File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -470,7 +470,8 @@ class concat_view<_Views...>::__iterator {
470470
471471 _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator ==(const __iterator& __it, default_sentinel_t ) {
472472 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (
473- !__it.__it_ .valueless_by_exception (), " Trying to compare a valueless iterator of concat_view with the default sentinel." );
473+ !__it.__it_ .valueless_by_exception (),
474+ " Trying to compare a valueless iterator of concat_view with the default sentinel." );
474475 constexpr auto __last_idx = sizeof ...(_Views) - 1 ;
475476 return __it.__it_ .index () == __last_idx &&
476477 std::__unchecked_get<__last_idx>(__it.__it_ ) == ranges::end (std::get<__last_idx>(__it.__parent_ ->__views_ ));
@@ -606,7 +607,8 @@ class concat_view<_Views...>::__iterator {
606607 (__apply_drop_first<_Const, _Views...>::value)
607608 {
608609 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS (
609- !__x.__it_ .valueless_by_exception (), " Trying to subtract a valuess iterators of concat_view from the default sentinel." );
610+ !__x.__it_ .valueless_by_exception (),
611+ " Trying to subtract a valuess iterators of concat_view from the default sentinel." );
610612 size_t __ix = __x.__it_ .index ();
611613 __variant_detail::__visitation::__variant::__visit_value (
612614 [&](auto & __it_x) {
You can’t perform that action at this time.
0 commit comments