-
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
<format>
: parameter name consistency: _First
/_Last
vs _Begin
/_End
#1951
<format>
: parameter name consistency: _First
/_Last
vs _Begin
/_End
#1951
Conversation
Sorry for causing a mess there, I was having some trouble using the clang-format tool for the first time. Again, all I did was change the |
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 all great. Could we please change the names of the local _Begin
and _End
variables in _Parse_format_string
on lines 946-983 similarly?
@CaseyCarter Done. |
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.
Looks great!
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.
LGTM
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.
Looks good to me! Thanks!
Thanks for improving codebase consistency - and congratulations on your first microsoft/STL commit! 🎉 😸 🚀 This will ship in VS 2022 17.0 Preview 2. |
This PR enhances #1947. All
_Begin
and_End
parameters have been changed to_First
and_Last
, respectively. There is also a function on line 2081 (_Write_separated_integer
) which uses the parameter names_Start
and_End
, so I edited that function too conforming to the standard parameter names.