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
I know that C++11 on GCC < 4.7 is awful, but true is not a good default if there is not way to determine noexceptness.
true
#include <boost/type_traits/is_nothrow_move_assignable.hpp> struct foo { foo& operator=(foo&&) noexcept(false) { throw 0; } }; static_assert(!boost::is_nothrow_move_assignable<foo>::value, "");
https://godbolt.org/z/WT3g9q
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I know that C++11 on GCC < 4.7 is awful, but
true
is not a good default if there is not way to determine noexceptness.https://godbolt.org/z/WT3g9q
The text was updated successfully, but these errors were encountered: