MCPcopy Create free account
hub / github.com/FastLED/FastLED / operator delete[]

Function operator delete[]

tests/profile/json_memory_profile.cpp:250–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248}
249
250void operator delete[](void* ptr) noexcept {
251 ::free(ptr); // Explicitly call global free (our override)
252}
253
254void operator delete(void* ptr, size_t) noexcept {
255 ::free(ptr); // Explicitly call global free (our override)

Callers

nothing calls this directly

Calls 1

freeFunction · 0.70

Tested by

no test coverage detected