We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From morph/flags.h:
The (more readable) C++20 equivalent to the C++17 compatible template declaration:
template <typename E, typename std::enable_if<std::is_enum<E>{}, bool>::type = true>
is:
template <typename E> requires std::is_enum_v<E>
can it be one line?
Anyhow - do the replacement in flags.h after merging the constexpr code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From morph/flags.h:
The (more readable) C++20 equivalent to the C++17 compatible template declaration:
is:
can it be one line?
Anyhow - do the replacement in flags.h after merging the constexpr code.
The text was updated successfully, but these errors were encountered: