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

Function operator delete

tests/profile/json_memory_profile.cpp:246–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244}
245
246void operator delete(void* ptr) noexcept {
247 ::free(ptr); // Explicitly call global free (our override)
248}
249
250void operator delete[](void* ptr) noexcept {
251 ::free(ptr); // Explicitly call global free (our override)

Callers

nothing calls this directly

Calls 1

freeFunction · 0.70

Tested by

no test coverage detected