We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43c7265 commit 3ae866aCopy full SHA for 3ae866a
libcxx/include/__ranges/concat_view.h
@@ -473,8 +473,7 @@ class concat_view<_Views...>::__iterator {
473
!__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
474
constexpr auto __last_idx = sizeof...(_Views) - 1;
475
return __it.__it_.index() == __last_idx &&
476
- std::__unchecked_get<__last_idx>(__it.__it_) ==
477
- ranges::end(std::get<__last_idx>(__it.__parent_->__views_));
+ std::__unchecked_get<__last_idx>(__it.__it_) == ranges::end(std::get<__last_idx>(__it.__parent_->__views_));
478
}
479
480
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(const __iterator& __x, const __iterator& __y)
0 commit comments