-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Fix iteration #4063
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
Fix iteration #4063
Conversation
MKleusberg
left a comment
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 great! Thank you for taking care of this! 😄 Do you mind fixing the two whitespace issues in this PR? After that we can just merge it easily.
src/sql/sqlitetypes.cpp
Outdated
| return; | ||
| } | ||
| } else { | ||
| ++it; |
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.
Here
src/sql/sqlitetypes.cpp
Outdated
| return; | ||
| } | ||
| } else { | ||
| ++it; |
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.
and here
d244174 to
04c3f31
Compare
This implements the Associative Containers Pattern described at https://stackoverflow.com/questions/16013545/how-do-i-erase-elements-from-stl-containers#16013546. Fixes sqlitebrowser#4061 and sqlitebrowser#4069.
04c3f31 to
72ff25e
Compare
|
Awesome! Thank you so much again! 👍 |
This implements the Associative Containers Pattern described at https://stackoverflow.com/questions/16013545/how-do-i-erase-elements-from-stl-containers#16013546.
Fixes #4061.