| 230 | } |
| 231 | |
| 232 | void deallocate(T* p, fl::size n) FL_NOEXCEPT { |
| 233 | FASTLED_UNUSED(n); |
| 234 | if (p == nullptr) { |
| 235 | return; // Handle null pointer |
| 236 | } |
| 237 | Free(p); // Free the allocated memory |
| 238 | } |
| 239 | |
| 240 | // Construct an object at the specified address |
| 241 | template <typename U, typename... Args> |
no test coverage detected