fix clang tidy

This commit is contained in:
Tomasz Duda 2024-07-24 15:31:00 +02:00
parent 4a0a14635a
commit 0c0a972c5e
2 changed files with 4 additions and 4 deletions

View file

@ -168,21 +168,21 @@ class ClimateTraits {
protected:
void set_mode_support_(climate::ClimateMode mode, bool supported) {
if (supported) {
if (supported) { // NOLINT(bugprone-branch-clone)
supported_modes_.insert(mode);
} else {
supported_modes_.erase(mode);
}
}
void set_fan_mode_support_(climate::ClimateFanMode mode, bool supported) {
if (supported) {
if (supported) { // NOLINT(bugprone-branch-clone)
supported_fan_modes_.insert(mode);
} else {
supported_fan_modes_.erase(mode);
}
}
void set_swing_mode_support_(climate::ClimateSwingMode mode, bool supported) {
if (supported) {
if (supported) { // NOLINT(bugprone-branch-clone)
supported_swing_modes_.insert(mode);
} else {
supported_swing_modes_.erase(mode);

View file

@ -215,7 +215,7 @@ uint32_t random_uint32() {
std::uniform_int_distribution<uint32_t> dist(0, std::numeric_limits<uint32_t>::max());
return dist(rng);
#elif defined(USE_ZEPHYR)
return rand();
return rand(); // NOLINT(cert-msc30-c,cert-msc50-cpp)
#else
#error "No random source available for this configuration."
#endif