-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Issue #45: Implement is_noexcept meta function #56
Conversation
move instantiated func templates into supported section
libcxx/test/std/experimental/reflection/member-classification.pass.cpp
Outdated
Show resolved
Hide resolved
Co-authored-by: Daniel M. Katz <katzdm@gmail.com>
…plate function make switch ident follow the style of this file
Hey @delimbetov - We got feedback from LEWG this week to reduce the scope of this function. Please see the latest spec here, and modify accordingly. Looking forward to taking another look thereafter; let me know. |
Updated @katzdm |
Issue number of the reported bug or feature request: #45
Describe your changes
Added is_noexcept as per P2996r5 spec.
The function checks for noexcept on:
For everything else it returns false.
Testing performed
Tests added to libcxx to cover all supported scenarios.