Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
250
void operator delete[](void* ptr) noexcept {
251
::free(ptr); // Explicitly call global free (our override)
252
}
253
254
void operator delete(void* ptr, size_t) noexcept {
255
::free(ptr); // Explicitly call global free (our override)
Callers
nothing calls this directly
Calls
1
free
Function · 0.70
Tested by
no test coverage detected