Does placement-new introduce a sequence point?

Viewed 204

Consider the following line of code:

new (p++) T();

If the constructor T() throws an exception, is p guaranteed to have already been incremented?

5 Answers
Related