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
In IPR, we have
// -- DeclSpecifiers -- enum class DeclSpecifiers : uint32_t { None = 0, ... Inline = 1 << 5, Virtual = 1 << 6, // also used as storage class specifier // for virtual base subobjects Explicit = 1 << 7, Pure = 1 << 8, FunctionSpecifier = Inline | Virtual | Explicit | Pure, ...
We need to add support for C++20 explicit(expr).
explicit(expr)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In IPR, we have
We need to add support for C++20
explicit(expr)
.The text was updated successfully, but these errors were encountered: