-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Use Loop::Break/Continue instead of bool in visitor of ForEachActiveO… #12420
Merged
Conversation
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
kghost
force-pushed
the
pool-foreach-type
branch
from
December 1, 2021 17:54
ba7d71a
to
b346e77
Compare
pullapprove
bot
requested review from
anush-apple,
balducci-apple,
bzbarsky-apple,
carol-apple,
cecille,
chrisdecenzo,
chulspro,
Damian-Nordic,
electrocucaracha,
emargolis,
erjiaqing,
franck-apple,
harimau-qirex,
hawk248,
holbrookt,
jelderton,
jepenven-silabs,
jmartinez-silabs,
LuDuda,
lzgrablic02,
mlepage-google,
msandstedt and
mspang
December 1, 2021 17:55
pullapprove
bot
requested review from
pan-apple,
sagar-apple,
saurabhst,
selissia,
tecimovic,
turon,
vijs,
vivien-apple,
wbschiller,
woody-apple and
yufengwangca
December 1, 2021 17:55
woody-apple
approved these changes
Dec 1, 2021
Fast tracking given this is just renaming. |
PR #12420: Size comparison from 31156c4 to b346e77 Increases (3 builds for esp32, telink)
Decreases (16 builds for efr32, k32w, linux, nrfconnect, p6, qpg)
Full report (39 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
msandstedt
approved these changes
Dec 1, 2021
andy31415
approved these changes
Dec 1, 2021
kpschoedel
approved these changes
Dec 1, 2021
kghost
force-pushed
the
pool-foreach-type
branch
from
December 2, 2021 07:30
b346e77
to
9f298b5
Compare
PR #12420: Size comparison from 4ec0e4e to 9f298b5 Increases (3 builds for esp32, linux, telink)
Decreases (6 builds for efr32, k32w, p6, qpg)
Full report (29 builds for efr32, esp32, k32w, linux, mbed, p6, qpg, telink)
|
kghost
force-pushed
the
pool-foreach-type
branch
from
December 2, 2021 13:56
9f298b5
to
c160672
Compare
PR #12420: Size comparison from dc10c82 to c160672 Increases (3 builds for esp32, linux, telink)
Decreases (14 builds for efr32, k32w, nrfconnect, p6)
Full report (39 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
kpschoedel
added a commit
to kpschoedel/connectedhomeip
that referenced
this pull request
Dec 2, 2021
#### Problem bf383b3 project-chip#11937 landed with a form changed a few minutes earlier by e2e4c17 project-chip#12420 #### Change overview Fix return values. #### Testing Build & CI
Merged
woody-apple
pushed a commit
that referenced
this pull request
Dec 2, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
Use a bool to control when to break the loop is not intuitive.
Change overview
Loop::Break
andLoop::Continue
instead of bool in visitor ofForEachActiveObject
ForEachActiveObject
will returnLoop::Break
orLoop::Finish
Testing
Checked unit-tests