-
Notifications
You must be signed in to change notification settings - Fork 967
Standardize C++ version naming #4863
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
Standardize C++ version naming #4863
Conversation
|
||
// 18) time_zone_link | ||
bool operator==(const time_zone_link& Left, const time_zone_link& Right) noexcept; | ||
bool operator==(const time_zone_link& Left, const time_zone_link& Right) noexcept; // C++20 |
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.
This is missing the C++20
label, added it as a drive-by.
PRMerger Results
|
@TylerMSFT - is this yours to review? If not, you can reassign or let me know who to assign. Thanks!
#label:"aq-pr-triaged" |
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.
Nice cleanup - thanks @Rageking8
#sign-off |
The canonical way to represent a C++ version (only the last 2 digits of the year) is without the extra space character (i.e. either C++20 or C++ 2020). This PR removes all extra spaces as the canonical version is more prevalent in this docs repository and is used as such in the official ISO website.