Skip to content

Commit

Permalink
Update include/oneapi/dpl/pstl/zip_view_impl.h
Browse files Browse the repository at this point in the history
Co-authored-by: Dan Hoeflinger <[email protected]>
  • Loading branch information
MikeDvorskiy and danhoeflinger authored Mar 10, 2025
1 parent 8cf91c6 commit 5706335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/oneapi/dpl/pstl/zip_view_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ template <bool C, typename... _Views>
concept __all_forward = (std::ranges::forward_range<__maybe_const<C, _Views>> && ...);

template <bool C, typename... _Views>
concept __all_bidirectional = (std::ranges::bidirectional_range<std::conditional_t<C, const _Views, _Views>> && ...);
concept __all_bidirectional = (std::ranges::bidirectional_range<__maybe_const<C, _Views>> && ...);

template <bool C, typename... _Views>
concept __all_random_access = (std::ranges::random_access_range<__maybe_const<C, _Views>> && ...);
Expand Down

0 comments on commit 5706335

Please sign in to comment.