New posts in delete-operator

Is it still safe to delete nullptr in c++0x?

Why is it undefined behavior to delete[] an array of derived objects via a base pointer?

Deleting a pointer in C++

Is there any reason to check for a NULL pointer before deleting?

C++ delete vector, objects, free memory

Why would one replace default new and delete operators?

Deleting a pointer to const (T const*)

What does Visual Studio do with a deleted pointer and why?

Why doesn't delete set the pointer to NULL?

How does delete[] know it's an array?

Does delete on a pointer to a subclass call the base class destructor?

delete vs delete[] [duplicate]

Problems freeing memory in a copy constructor

How should I write ISO C++ Standard conformant custom new and delete operators?

Calling delete on variable allocated on the stack

Meaning of = delete after function declaration

Is it safe to delete a NULL pointer?

Is "delete this" allowed in C++?

delete vs delete[] operators in C++

Is delete[] equal to delete?