| 39 | } |
| 40 | |
| 41 | void *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 | |
| 45 | void mc2_aligned_free(void *ptr) { |
| 46 | if (ptr != nullptr) _aligned_free(ptr); |
nothing calls this directly
no outgoing calls
no test coverage detected