You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server/Server.cpp Initialize ChipDeviceEvent on instantiation (project-chip#38047)
This fixes an error:
src/app/server/Server.cpp:621:34: error: call to implicitly-deleted default constructor of 'DeviceLayer::ChipDeviceEvent'
621 | DeviceLayer::ChipDeviceEvent event;
| ^
src/include/platform/CHIPDeviceEvent.h:508:11: note: default constructor of 'ChipDeviceEvent' is implicitly deleted because variant field 'CHIPoBLEConnectionError' has a non-trivial default constructor
508 | } CHIPoBLEConnectionError;
| ^
1 error generated.
0 commit comments