\internal Frees memory allocated with handmade_aligned_malloc */
| 94 | |
| 95 | /** \internal Frees memory allocated with handmade_aligned_malloc */ |
| 96 | inline void handmade_aligned_free(void *ptr) |
| 97 | { |
| 98 | if (ptr) std::free(*(reinterpret_cast<void**>(ptr) - 1)); |
| 99 | } |
| 100 | |
| 101 | /** \internal |
| 102 | * \brief Reallocates aligned memory. |
no outgoing calls
no test coverage detected