-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Implement LWG-3712: chunk_view
and slide_view
should not be default_initializable
#2943
Conversation
// Validate non-default-initializability | ||
STATIC_ASSERT(!is_default_constructible_v<R>); | ||
STATIC_ASSERT(!default_initializable<R>); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No change requested: test_one()
is called for both input-only and forward ranges, so this covers the LWG issue's modifications to both the primary template and the specialization for forward ranges.
I'm mirroring this to the MSVC-internal repo - please notify me if any further changes are pushed. |
Thanks for implementing so many LWG issue resolutions and improving conformance! 😻 😻 😻 😻 😻 😻 😻 😻 |
…ult_initializable` (microsoft#2943) Co-authored-by: Casey Carter <[email protected]>
Towards #2872.