MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / operator new

Function operator new

src/misc/alloc_tracker_overrides.cpp:92–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90// -----------------------------------------------------------------------------
91
92void * operator new (size_t size) { return track_new_impl(size); }
93void * operator new[](size_t size) { return track_new_impl(size); }
94
95void * operator new (size_t size, std::nothrow_t const &) noexcept { return track_new_impl(size); }

Callers

nothing calls this directly

Calls 2

track_new_implFunction · 0.85
track_new_aligned_implFunction · 0.85

Tested by

no test coverage detected