Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
7k views

Overloading global operator new/delete in C++

I am trying to overload the global operator new and delete for a performance sensitive application. I have read the concerns described at ...
3
votes
4answers
467 views

Difference between operator new and operator new[]?

I've overloaded the global operator new/delete/new[]/delete[] but simple tests show that while my versions of new and delete are being called correctly, doing simple array allocations and deletes ...
1
vote
5answers
576 views

Recursive calls when trying to wrap and override the global operator new

I have not programmed C++ for a while and encountered a strange behavior when toying with overloaded global operators new and delete. The essence of the problem seems to be that a wrapper build around ...