[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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -565,7 +565,8 @@ class Mutex {
#if defined(USE_ESP32) || defined(USE_LIBRETINY)
SemaphoreHandle_t handle_;
#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
};