| 54 | void __cdecl operator delete[](void *); |
| 55 | |
| 56 | inline void *__cdecl operator new(size_t, void *ptr) |
| 57 | { |
| 58 | return (ptr); |
| 59 | } |
| 60 | |
| 61 | inline void *__cdecl operator new[](size_t, void *ptr) |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected