File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD
6767
6868namespace 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
7373template <class _Tp , class ... _Tail>
7474constexpr 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_ ));
You can’t perform that action at this time.
0 commit comments