Skip to content

Commit 3975a05

Browse files
committed
fix comma
1 parent 706b1d8 commit 3975a05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__ranges/adjacent_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class adjacent_view<_View, _Np>::__iterator {
182182

183183
template <class _Tp, size_t... _Is>
184184
static auto __repeat_tuple_helper(index_sequence<_Is...>)
185-
-> tuple<decltype(((void)_Is, std::declval<_Tp (*)()>()()))...>;
185+
-> tuple<decltype((std::declval<_Tp (*)(size_t)>()(_Is)))...>;
186186

187187
public:
188188
using iterator_category = input_iterator_tag;

0 commit comments

Comments
 (0)