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
is_aggregate
LWG-3823 Unnecessary precondition for is_aggregate
It appears that we'll need to request an MSVC compiler change for this. I haven't checked Clang and EDG's behavior.
The text was updated successfully, but these errors were encountered:
I've submitted DevCom-10201896 and LLVM-59002 for this. EDG's __is_aggregate also rejects arrays of incomplete types.
__is_aggregate
I believe a workaround using disjunction_v is implementable (Godbolt link). Should we temporarily use such a workaround?
disjunction_v
Sorry, something went wrong.
As evidenced by my approval of your PR, I think the workaround is fine.
Successfully merging a pull request may close this issue.
LWG-3823 Unnecessary precondition for
is_aggregate
It appears that we'll need to request an MSVC compiler change for this. I haven't checked Clang and EDG's behavior.
The text was updated successfully, but these errors were encountered: