@@ -211,7 +211,7 @@ - (instancetype)init
211211
212212 // Start the work queue and leave it running. There is no performance
213213 // cost to having an idle dispatch queue, and it simplifies our logic.
214- DeviceLayer::PlatformMgrImpl ().StartEventLoopTask ();
214+ TEMPORARY_RETURN_IGNORED DeviceLayer::PlatformMgrImpl ().StartEventLoopTask ();
215215
216216 _chipWorkQueue = DeviceLayer::PlatformMgrImpl ().GetWorkQueue ();
217217 _controllerFactory = &DeviceControllerFactory::GetInstance ();
@@ -779,7 +779,7 @@ - (void)preWarmCommissioningSession
779779 MTR_LOG_ERROR (" Can't pre-warm, Matter controller factory is not running" );
780780 } else {
781781 MTR_LOG (" Pre-warming commissioning session" );
782- self->_controllerFactory ->EnsureAndRetainSystemState ();
782+ TEMPORARY_RETURN_IGNORED self->_controllerFactory ->EnsureAndRetainSystemState ();
783783 err = DeviceLayer::PlatformMgrImpl ().StartBleScan (&self->_preWarmingDelegate , DeviceLayer::BleScanMode::kPreWarm );
784784 if (err != CHIP_NO_ERROR) {
785785 MTR_LOG_ERROR (" Pre-warming failed: %" CHIP_ERROR_FORMAT, err.Format ());
@@ -934,7 +934,7 @@ - (void)controllerShuttingDown:(MTRDeviceController_Concrete *)controller
934934 // Clear out out group keys for this fabric index, in case fabric
935935 // indices get reused later. If a new controller is started on the
936936 // same fabric it will be handed the IPK at that point.
937- self->_groupDataProvider .RemoveGroupKeys (fabricIndex);
937+ TEMPORARY_RETURN_IGNORED self->_groupDataProvider .RemoveGroupKeys (fabricIndex);
938938 }
939939
940940 // If there are no other controllers left, we can shut down some things.
0 commit comments