| 27 | } |
| 28 | |
| 29 | void* operator new(size_t size) { |
| 30 | void *p = malloc(size); |
| 31 | cout << "operator new p: " << p << endl; |
| 32 | return p; |
| 33 | } |
| 34 | |
| 35 | void operator delete(void *ptr) { |
| 36 | cout << "B::opeartor delete p: " << ptr << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected