| 928 | |
| 929 | #ifdef WIN32 |
| 930 | void * __cdecl my_operator_new_replacement(size_t _count) |
| 931 | { |
| 932 | void * p = operator new(_count); |
| 933 | // cout << "alloc, cnt = " << _count << ", ptr = " << p << endl; |
| 934 | return p; |
| 935 | } |
| 936 | |
| 937 | void __cdecl my_operator_delete_replacement(void * _ptr) |
| 938 | { |
nothing calls this directly
no test coverage detected