| 56 | } |
| 57 | |
| 58 | void do_deallocate(void* p, fl::size bytes) override { |
| 59 | FASTLED_UNUSED(bytes); |
| 60 | fl::PSRamDeallocate(p); |
| 61 | } |
| 62 | |
| 63 | // PSRAM does not support realloc — returns nullptr to trigger alloc-copy-free path |
| 64 | // do_reallocate uses the base default (returns nullptr) |
nothing calls this directly
no test coverage detected