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
The following code does not compile on my system because it is "changing the meaning of aligned_storage_t"
using aligned_storage_t = aligned_storage_t<sizeof(remove_const_t<T>), alignof(remove_const_t<T>)>; using data_t = conditional_t<!Const<T>, aligned_storage_t, const aligned_storage_t>;
Changing it to the following code fixes the issue for me
using aligned_storage_t_ = aligned_storage_t<sizeof(remove_const_t<T>), alignof(remove_const_t<T>)>; using data_t = conditional_t<!Const<T>, aligned_storage_t_, const aligned_storage_t_>;
The text was updated successfully, but these errors were encountered:
Change alinged_storage_t to aligned_storage_t_ as in gnzlbg#47
6915013
No branches or pull requests
The following code does not compile on my system because it is "changing the meaning of aligned_storage_t"
Changing it to the following code fixes the issue for me
The text was updated successfully, but these errors were encountered: