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

Function mc2_aligned_malloc_info

src/Memory.cpp:41–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41void *mc2_aligned_malloc_info(std::uint32_t size, std::uint32_t align, const char * /* file */, std::int32_t /* line */) {
42 return _aligned_malloc(size, align);
43}
44
45void mc2_aligned_free(void *ptr) {
46 if (ptr != nullptr) _aligned_free(ptr);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected