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
= T()
{}
The form T mem_ = T(); seems originally introduced in ericniebler/stl2@d115fc7 because of LWG3149.
T mem_ = T();
Given LWG3149 has been resolved long time ago, should/can we switch back to the simpler form (T mem_{};)?
T mem_{};
The text was updated successfully, but these errors were encountered:
Was that the only reason we've been avoiding the {} form? I don't remember.
Sorry, something went wrong.
No branches or pull requests
The form
T mem_ = T();
seems originally introduced in ericniebler/stl2@d115fc7 because of LWG3149.Given LWG3149 has been resolved long time ago, should/can we switch back to the simpler form (
T mem_{};
)?The text was updated successfully, but these errors were encountered: