1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

[helpers] Add NOLINT for Mutex private field `handle_` (#7838)

This commit is contained in:
Keith Burzinski
2024-11-25 16:20:03 -06:00
committed by GitHub
parent b027b6a711
commit bdb91112ea

View File

@@ -565,7 +565,8 @@ class Mutex {
#if defined(USE_ESP32) || defined(USE_LIBRETINY) #if defined(USE_ESP32) || defined(USE_LIBRETINY)
SemaphoreHandle_t handle_; SemaphoreHandle_t handle_;
#else #else
void *handle_; // d-pointer to store private data on new platforms // d-pointer to store private data on new platforms
void *handle_; // NOLINT(clang-diagnostic-unused-private-field)
#endif #endif
}; };