Tagged Questions

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
2answers
444 views

Overloading Delete Operator in c++

In my code, i have overloaded the new and delete operators to get filename and line number. In my code I am using map and stack. When i do erase a particular value from the map it just call my ...
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 ...
2
votes
1answer
230 views

Overloading operator delete in a base class

From the C++ standard (ISO/IEC 14882:2003(E)), ยง12.5.4, about overloading operator delete: If a delete-expression begins with a unary :: operator, the deallocation function's name is looked up in ...
2
votes
5answers
448 views

overloading operator delete, or how to kill a cat?

I am experimenting with overloading operator delete, so that I can return a plain pointer to those who don't wish to work with smart pointers, and yet be able to control when the object is deleted. I ...
0
votes
1answer
112 views

Global operator delete - grammar

I have inherited an unchangeable C struct that contains pointers to (alloc'd) memory. typedef struct { int id; int * val; } T; I would like to use new and delete on these objects, ...