MCPcopy Create free account
hub / github.com/FastLED/FastLED / deallocate

Function deallocate

src/fl/stl/allocator.h:320–326  ·  view source on GitHub ↗

Standard deallocate()

Source from the content-addressed store, hash-verified

318
319 // Standard deallocate()
320 void deallocate(T* p, fl::size n) FL_NOEXCEPT {
321 FASTLED_UNUSED(n);
322 if (p == nullptr) {
323 return;
324 }
325 Free(p);
326 }
327
328 // Standard construct()
329 template <typename U, typename... Args>

Callers 3

reallocate_implMethod · 0.85
reallocateFunction · 0.85
reallocateMethod · 0.85

Calls 1

FreeFunction · 0.85

Tested by

no test coverage detected