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
A warning is generated by the following struct on latest MSVC using /permissive-: https://github.com/boostorg/move/blob/develop/include/boost/move/detail/type_traits.hpp#L895-L905
/permissive-
warning C4624: 'boost::move_detail::alignment_of_hack<T>': destructor was implicitly defined as deleted
The fix is straight-forward:
template <typename T> struct alignment_of_hack { T t1; char c; T t2; alignment_of_hack(); ~alignment_of_hack(); };
The text was updated successfully, but these errors were encountered:
48243ff
Many thanks for the report!
Sorry, something went wrong.
No branches or pull requests
A warning is generated by the following struct on latest MSVC using
/permissive-
: https://github.com/boostorg/move/blob/develop/include/boost/move/detail/type_traits.hpp#L895-L905warning C4624: 'boost::move_detail::alignment_of_hack<T>': destructor was implicitly defined as deleted
The fix is straight-forward:
The text was updated successfully, but these errors were encountered: