Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DejinChen committed Sep 6, 2024
1 parent cd48be9 commit 3522235
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/app/clusters/network-commissioning/network-commissioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,15 @@ class Instance : public CommandHandlerInterface,
Instance(EndpointId aEndpointId, DeviceLayer::NetworkCommissioning::WiFiDriver * apDelegate);
Instance(EndpointId aEndpointId, DeviceLayer::NetworkCommissioning::ThreadDriver * apDelegate);
Instance(EndpointId aEndpointId, DeviceLayer::NetworkCommissioning::EthernetDriver * apDelegate);
virtual ~Instance() = default;
virtual ~Instance()
{
#if CHIP_DEVICE_CONFIG_SUPPORTS_CONCURRENT_CONNECTION
if (sInstances.Contains(this))
{
sInstances.Remove(this);
}
#endif
};
}; // namespace NetworkCommissioning

// NetworkDriver for the devices that don't have / don't need a real network driver.
Expand Down

0 comments on commit 3522235

Please sign in to comment.