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

Method do_deallocate

src/fl/stl/memory_resource.cpp.hpp:33–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 }
32
33 void do_deallocate(void* p, fl::size bytes) override {
34 FASTLED_UNUSED(bytes);
35 fl::Free(p);
36 }
37
38 void* do_reallocate(void* p, fl::size old_bytes, fl::size new_bytes) override {
39 void* result = fl::realloc(p, new_bytes);

Callers

nothing calls this directly

Calls 1

FreeFunction · 0.85

Tested by

no test coverage detected