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

Function operator delete[]

library/cpp/balloc/balloc.cpp:187–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187void operator delete[](void* p) OP_THROWNOTHING {
188#if defined(Y_COVER_PTR)
189 free(p);
190#else
191 NBalloc::Free(p);
192#endif
193}
194
195void operator delete[](void* p, const std::nothrow_t&) OP_THROWNOTHING {
196#if defined(Y_COVER_PTR)

Callers

nothing calls this directly

Calls 2

FreeFunction · 0.85
freeFunction · 0.70

Tested by

no test coverage detected