-
Notifications
You must be signed in to change notification settings - Fork 9
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
880 change Holder::foreach() to return void #993
880 change Holder::foreach() to return void #993
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #993 +/- ##
===========================================
- Coverage 77.41% 77.35% -0.06%
===========================================
Files 656 656
Lines 25160 25109 -51
===========================================
- Hits 19477 19424 -53
- Misses 5683 5685 +2
|
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 👍
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. Rebase and let's merge!
@jstrzebonski You need to get commit signing with GPG turned on. You can't merge unless Github has your verified signature. |
b4a31d6
to
c738a36
Compare
@lifflander Commit is verified and branch is rebased. |
c738a36
to
511a5b1
Compare
AFAIS returning bool from
Holder::foraech(FuncApplyType fn)
is redundant.FuncApplyType
is returning void, so I don't see howforeach()
might return false / failed (except for throwing, but I'm not sure if that's even possible).Fixes #880