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
In src/platform/Linux/ConnectivityManagerImpl.h, some of the members such as ConnectivityManager::WiFiStationMode mWiFiStationMode are scoped under CHIP_DEVICE_CONFIG_ENABLE_WPA flag.
However, they are used out of its scope in ConnectivityManagerImpl.cpp such as within ConnectivityManagerImpl::_Init().
Tracing back, PR #10096 seems to have scoped these declarations under the flag but missed scoping their usages.
Consequently, build breaks when CHIP_DEVICE_CONFIG_ENABLE_WPA is disabled (by chip_enable_wifi or other means).
The text was updated successfully, but these errors were encountered:
In
src/platform/Linux/ConnectivityManagerImpl.h
, some of the members such asConnectivityManager::WiFiStationMode mWiFiStationMode
are scoped underCHIP_DEVICE_CONFIG_ENABLE_WPA
flag.However, they are used out of its scope in
ConnectivityManagerImpl.cpp
such as withinConnectivityManagerImpl::_Init()
.Tracing back, PR #10096 seems to have scoped these declarations under the flag but missed scoping their usages.
Consequently, build breaks when
CHIP_DEVICE_CONFIG_ENABLE_WPA
is disabled (bychip_enable_wifi
or other means).The text was updated successfully, but these errors were encountered: