mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
umax: restore "natural" operation order
This commit is contained in:
parent
3e0e1f668c
commit
4d1f818162
@ -423,7 +423,7 @@ constexpr inline struct umax_helper
|
||||
template <typename T, typename S = simple_t<T>, typename = std::enable_if_t<std::is_unsigned_v<S>>>
|
||||
constexpr bool operator==(const T& rhs) const
|
||||
{
|
||||
return std::numeric_limits<S>::max() == rhs;
|
||||
return rhs == std::numeric_limits<S>::max();
|
||||
}
|
||||
|
||||
#if __cpp_impl_three_way_comparison >= 201711 && !__INTELLISENSE__
|
||||
@ -431,7 +431,7 @@ constexpr inline struct umax_helper
|
||||
template <typename T>
|
||||
friend constexpr std::enable_if_t<std::is_unsigned_v<simple_t<T>>, bool> operator==(const T& lhs, const umax_helper& rhs)
|
||||
{
|
||||
return std::numeric_limits<simple_t<T>>::max() == lhs;
|
||||
return lhs == std::numeric_limits<simple_t<T>>::max();
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -440,13 +440,13 @@ constexpr inline struct umax_helper
|
||||
template <typename T, typename S = simple_t<T>, typename = std::enable_if_t<std::is_unsigned_v<S>>>
|
||||
constexpr bool operator!=(const T& rhs) const
|
||||
{
|
||||
return std::numeric_limits<S>::max() != rhs;
|
||||
return rhs != std::numeric_limits<S>::max();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
friend constexpr std::enable_if_t<std::is_unsigned_v<simple_t<T>>, bool> operator!=(const T& lhs, const umax_helper& rhs)
|
||||
{
|
||||
return std::numeric_limits<simple_t<T>>::max() != lhs;
|
||||
return lhs != std::numeric_limits<simple_t<T>>::max();
|
||||
}
|
||||
#endif
|
||||
} umax;
|
||||
|
Loading…
Reference in New Issue
Block a user