Skip to content

Commit 6ca2e58

Browse files
clang-format
1 parent e6b93af commit 6ca2e58

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libcxx/include/__ranges/concat_view.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD
6767

6868
namespace ranges {
6969

70-
template <class... __Tp>
71-
using __extract_last = __Tp...[sizeof...(__Tp) - 1];
70+
template <class... __Tp>
71+
using __extract_last = __Tp...[sizeof...(__Tp) - 1];
7272

7373
template <class _Tp, class... _Tail>
7474
constexpr bool __derived_from_pack =
@@ -537,7 +537,8 @@ class concat_view<_Views...>::__iterator {
537537
__it_y.apply_fn_with_const_index<std::tuple_size_v<decltype(__y.parent_->__views_)>>(
538538
__iy, [&](auto index_constant) {
539539
constexpr size_t __index_y = index_constant.value;
540-
auto __dy = ranges::__distance(ranges::begin(std::get<__index_y>(__y.parent_->__views_)), __it_y);
540+
auto __dy =
541+
ranges::__distance(ranges::begin(std::get<__index_y>(__y.parent_->__views_)), __it_y);
541542
difference_type __s = 0;
542543
for (size_t __idx = __index_y + 1; __idx < __index_x; __idx++) {
543544
__s += ranges::size(std::get<__idx>(__x.parent_->__views_));

0 commit comments

Comments
 (0)