Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbac authored Mar 1, 2024
1 parent c065e76 commit 09f010c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concept bounded_enum = requires(T e)
{ T::first } -> std::convertible_to<T>;
{ T::last } -> std::convertible_to<T>;
// 'last' must be greater than or equal to 'first'
requires (std::to_underlying(T::last) >= std::to_underlying(T::first));
requires (to_underlying(T::last) >= to_underlying(T::first));
};

template<typename Enum>
Expand Down

0 comments on commit 09f010c

Please sign in to comment.