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
With the debug build enabled along with CHIP Progress logging disabled, GenericThreadStackManagerImpl_OpenThread.cpp fails to compile due to unused variables (-Werror=unused-but-set-variable):
This condition can be reproduced by setting the following within args.gni for a certain application build.
is_debug = false
chip_progress_logging = false
Proposed Solution
GenericThreadStackManagerImpl_OpenThread.cpp should be using ifdefs for CHIP_PROGRESS_LOGGING in order to wrap the unused variables.
The text was updated successfully, but these errors were encountered:
Problem
With the debug build enabled along with CHIP Progress logging disabled, GenericThreadStackManagerImpl_OpenThread.cpp fails to compile due to unused variables (-Werror=unused-but-set-variable):
This condition can be reproduced by setting the following within args.gni for a certain application build.
is_debug = false
chip_progress_logging = false
Proposed Solution
GenericThreadStackManagerImpl_OpenThread.cpp should be using ifdefs for CHIP_PROGRESS_LOGGING in order to wrap the unused variables.
The text was updated successfully, but these errors were encountered: