| 336 | static inline void (free)(void* ptr) { return WORKAROUND_free(ptr); } |
| 337 | #else |
| 338 | static inline void* malloc(size_t size) { return std::malloc(size); } |
| 339 | static inline void free(void* ptr) { return std::free(ptr); } |
| 340 | #endif |
| 341 | #else |
nothing calls this directly
no outgoing calls
no test coverage detected