mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	fix clang tidy
This commit is contained in:
		| @@ -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); | ||||
|   | ||||
| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user