style: apply clang-format and enforce left pointer alignment

This commit is contained in:
Sebastien L
2026-02-12 04:48:38 +00:00
parent df225c120c
commit bf2fff44b8
148 changed files with 11508 additions and 12904 deletions

View File

@@ -1,12 +1,10 @@
#include <memory>
#include <esp_heap_caps.h>
void* operator new(std::size_t count) {
return heap_caps_malloc(count, MALLOC_CAP_SPIRAM);
}
void* operator new(std::size_t count) { return heap_caps_malloc(count, MALLOC_CAP_SPIRAM); }
void operator delete(void* ptr) noexcept {
if (ptr) free(ptr);
void operator delete(void* ptr) noexcept {
if(ptr) free(ptr);
}
/*