Deallocate memory for n objects of type T
| 418 | |
| 419 | // Deallocate memory for n objects of type T |
| 420 | void deallocate(T* p, fl::size n) FL_NOEXCEPT { |
| 421 | PSRamAllocator<T>::Free(p); |
| 422 | FASTLED_UNUSED(n); |
| 423 | } |
| 424 | |
| 425 | // Construct an object at the specified address |
| 426 | template <typename U, typename... Args> |