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

Function mc2_free

src/Memory.cpp:33–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33void mc2_free(void *ptr) {
34 if (ptr != nullptr) operator delete(ptr);
35}
36
37void *mc2_aligned_malloc(std::uint32_t size, std::uint32_t align) {
38 return _aligned_malloc(size, align);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected