Skip to content
Prev Previous commit
Next Next commit
fixing comparison
  • Loading branch information
whaeck committed Jun 25, 2024
commit 32eabb8a1584e28b9827103b95bc8536dc67e5b8
2 changes: 1 addition & 1 deletion src/tools/std23/views/zip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ struct zip_view : std20::ranges::view_interface< zip_view< Rs... > > {
friend constexpr auto operator>( const iterator& left, const iterator& right )
-> std::enable_if_t< zip_all_random_access< C, Rs... >, bool > {

return left < right;
return right < left;
}

template < bool C = Const >
Expand Down