FastLED 3.9.15
Loading...
Searching...
No Matches

◆ deallocate()

template<typename T>
void fl::allocator< T >::deallocate ( T * p,
size_t n )
inline

Definition at line 77 of file allocator.h.

77 {
79 if (p == nullptr) {
80 return; // Handle null pointer
81 }
82 free(p); // Free the allocated memory
83 }
#define FASTLED_UNUSED(x)
Definition unused.h:3