-
Notifications
You must be signed in to change notification settings - Fork 1.6k
<flat_set>: flat_(multi)set's iterator type should be constant iterator
#4132
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
Merged
Stephan T. Lavavej (StephanTLavavej)
merged 7 commits into
microsoft:feature/flat_set
from
achabense:_Flat_set_iterator_type_fix
Nov 7, 2023
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c15cecb
1. add test for set requirements
achabense 39eee7b
2. fixes
achabense a32d2b7
3. cleanups etc.
achabense 2f1e881
Apply suggestions from code review
achabense cda15c2
Apply suggestions from code review 2
achabense 150359d
review feedback: remove redundant non-const overloads.
achabense 7189ef9
review feedback: make _Get_container non-const
achabense 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 hidden or 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
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Is it ok not to add comment for this one? Or am I adding too many repetitive comments?
(Also, there are some remaining
iteratorin return types (eraseetc). I find it trickey to decide whether to returnconst_iterator/iterator. Returningiteratoris more obviously standard-conformant, but that also hides some informations...)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 probably would have commented this, but it's not really more confusing than the other locations which silently assume that they're the same type. I think this is fine to merge as-is.