Skip to content

Commit

Permalink
Fix build?
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtons12 committed Jan 29, 2024
1 parent 0ea6e16 commit b7476b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/hyperion/mpl/type_traits/is_comparable.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ namespace hyperion::mpl::type_traits {
template<typename TLhs, typename TRhs>
struct is_greater_than_comparable
: std::bool_constant<requires(const TLhs& lhs, const TRhs& rhs) {
lhs > rhs;
rhs > lhs;
(lhs > rhs);
(rhs > lhs);
}>
{};

Expand Down

0 comments on commit b7476b2

Please sign in to comment.