-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Update CppCoreGuidelines.md #2217
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I feel
u{v}; // most likely unintended: u has 1 element
contradictsv2{10}; // vector of 1 element with the value 10
a few lines above; constructing a 1-element vector holding v as its element is what curlies show the intent of.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.
The "title" of the guidline is Prefer the
{}
-initializer syntax, which per se does not refer to initializer lists nor anything else that is discussed in the various examples.The same holds for the Reason paragraph.
I think that's enough for the reader to interpret the guildeline as "Ok, I'll blindly use
{}
for initializing anything until I get some compile-time or run-time error".Furthermore, the example you mention is constrasting list of elements vs size for containers, whereas the case I'm making is about list of elements vs copy, and the whole item does not make any mention as regards preferring
{}
vs()
for copy constructing an entity, so in the absernce of an explicit mention of that, I think it's legit that the reader assumes that they should prefer{}
, following the title of the guideline.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.
Editors call: Thanks!
The guideline starts with "Prefer" so we think that it doesn't say to blindly use braces. Also,
any
is a good example but a very special outlier type;vector<int> x(1, 2)
is the stronger example and we think is covered in the first Exception. So we don't think a change is needed.