Tagged Questions
11
votes
5answers
145 views
Does placement-new introduce a sequence point?
Consider the following line of code:
new (p++) T();
If the constructor T() throws an exception, is p guaranteed to have already been incremented?
2
votes
4answers
216 views
Can assignment be done before constructor is called?
A comment to http://stackoverflow.com/questions/945232/whats-wrong-with-this-fix-for-double-checked-locking says:
The issue is that the variable may be
assigned before the constructor is run
...