MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / operator delete[]

Function operator delete[]

layers/profiling/profiling.cpp:46–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46void operator delete[](void* ptr) noexcept {
47 VVL_TracyFree(ptr);
48 free(ptr);
49};
50
51void* operator new(std::size_t size, const std::nothrow_t&) noexcept {
52 auto ptr = malloc(size);

Callers

nothing calls this directly

Calls 1

vvl_aligned_freeFunction · 0.85

Tested by

no test coverage detected