Skip to content

Commit 3ae866a

Browse files
clang format
1 parent 43c7265 commit 3ae866a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libcxx/include/__ranges/concat_view.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,7 @@ class concat_view<_Views...>::__iterator {
473473
!__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
474474
constexpr auto __last_idx = sizeof...(_Views) - 1;
475475
return __it.__it_.index() == __last_idx &&
476-
std::__unchecked_get<__last_idx>(__it.__it_) ==
477-
ranges::end(std::get<__last_idx>(__it.__parent_->__views_));
476+
std::__unchecked_get<__last_idx>(__it.__it_) == ranges::end(std::get<__last_idx>(__it.__parent_->__views_));
478477
}
479478

480479
_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(const __iterator& __x, const __iterator& __y)

0 commit comments

Comments
 (0)