Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: lpbeliveau-silabs <[email protected]>
  • Loading branch information
mkardous-silabs and lpbeliveau-silabs authored Nov 27, 2024
1 parent f1b63c4 commit ca07eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ bool ApplicationSleepManager::CanGoToLIBasedSleep()
}
else
{
for (ConstFabricIterator it = mFabricTable->begin(); it != mFabricTable->end(); ++it)
for (auto it = mFabricTable->begin(); it != mFabricTable->end(); ++it)
{
if (!mSubscriptionsInfoProvider->FabricHasAtLeastOneActiveSubscription(it->GetFabricIndex()))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ApplicationSleepManager : public chip::app::ReadHandler::ApplicationCallba
* Wi-Fi cannot go to LI based sleep.
*
* @return true if the device can go to LI sleep
* @return false if the device cannot go to LI sleep
* false if the device cannot go to LI sleep
*/
bool CanGoToLIBasedSleep() override;

Expand Down

0 comments on commit ca07eff

Please sign in to comment.