Placement new operator

Does it make sense to catch for exceptions after placement new operator?

Thanks!
Placement does not throw an exception, it doesn't allocate any memory so cannot fail.
Well, if I understand correctly, placement new will construct an object, and if that constructor throws an exception, the runtime calls placement delete and the exception has to be trapped.
Topic archived. No new replies allowed.