MCPcopy Create free account
hub / github.com/OpenMC2/OpenMC2 / mc2_malloc

Function mc2_malloc

src/Memory.cpp:25–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23#include <new>
24
25void *mc2_malloc(std::uint32_t size) {
26 return operator new(size);
27}
28
29void *mc2_malloc_info(std::uint32_t size, const char * /* file */, std::int32_t /* line */) {
30 return operator new(size);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected