Why C++ hasn\'t placement delete that directly corresponds to the placement new, i.e. calls the destructor and calls appropriate placement delete operator?
For examp
Because there's no need to, since we already have ptr->~type();
ptr->~type();