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

Fix clang-tidy header filter (#2385)

* Fix clang-tidy header filter

* Allow private members

* Fix clang-tidy detections

* Run clang-format

* Fix remaining detections

* Fix graph

* Run clang-format
This commit is contained in:
Otto Winter
2021-09-24 18:02:28 +02:00
committed by GitHub
parent 52dd79691b
commit aec02afcdc
76 changed files with 404 additions and 367 deletions

View File

@@ -333,10 +333,10 @@ template<typename T> T *new_buffer(size_t length) {
if (psramFound()) {
buffer = (T *) ps_malloc(length);
} else {
buffer = new T[length];
buffer = new T[length]; // NOLINT(cppcoreguidelines-owning-memory)
}
#else
buffer = new T[length]; // NOLINT
buffer = new T[length]; // NOLINT(cppcoreguidelines-owning-memory)
#endif
return buffer;