-
Notifications
You must be signed in to change notification settings - Fork 967
Update std-specify-language-standard-version.md #5088
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
Conversation
* _All_ c++20 Standard Library features have been available with `/std:c++20` since 17.2 and in 16.11 per https://devblogs.microsoft.com/cppblog/msvcs-stl-completes-stdc20/ , leaving 17.0 as a special case. * `/std:c++20` has always implied `/permissive-`, which fact we should mention here. * `/std:c++latest` has also implied `/permissive-` since we added `/std:c++20` but not in earlier releases.
@CaseyCarter : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
Learn Build status updates of commit 36f308e: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
This comment was marked as resolved.
This comment was marked as resolved.
Per https://devdiv.visualstudio.com/DevDiv/_git/msvc/pullrequest/268500 this change was made in 16.8 (Actually it was done in the 16.9 timeframe but the change was backported to 16.8 to better support the ongoing implementation of C++20 modules.) |
... so just remove my confusing mention of feature support under c++latest.
Learn Build status updates of commit 57a7893: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
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.
Thanks, Casey!
#sign-off |
#hold-off |
#sign-off |
Sorry for the messy commit history, I was expecting a squash merge. I'll be more careful in the future. |
/std:c++20
since 17.2 and in 16.11 per https://devblogs.microsoft.com/cppblog/msvcs-stl-completes-stdc20/ , leaving 17.0 out as a special case./std:c++20
has always implied/permissive-
, which fact we should mention here./std:c++latest
has also implied/permissive-
since 16.8, but not in earlier releases.