We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
!
1 parent 414705c commit 7609dafCopy full SHA for 7609daf
src/platform/Darwin/BUILD.gn
@@ -81,7 +81,7 @@ static_library("Darwin") {
81
]
82
}
83
84
- if (chip_disable_platform_kvs == false) {
+ if (!chip_disable_platform_kvs) {
85
sources += [
86
"DeviceInstanceInfoProviderImpl.cpp",
87
"DeviceInstanceInfoProviderImpl.h",
src/system/system.gni
@@ -57,7 +57,7 @@ if (chip_system_config_locking == "") {
57
chip_system_config_locking = "freertos"
58
} else if (current_os == "mbed") {
59
chip_system_config_locking = "mbed"
60
- } else if (chip_system_config_use_dispatch == false) {
+ } else if (!chip_system_config_use_dispatch) {
61
chip_system_config_locking = "posix"
62
} else {
63
chip_system_config_locking = "none"
0 commit comments