views:

246

answers:

2

What does it mean by Sequence Point is deprecated from C++0x, Wikipedia says it is deprecated from C++0x. Does that mean undefined behaviors due to sequence point have no effect?

+6  A: 

The term "sequence point" is deprecated in order to provide a clearer explanation. The C++ language should not change.

You can find more information here

J. Calleja
+3  A: 

The phrase "sequence point" has been deprecated in favor of more explicit phrasing like "sequenced before". Sequence points were difficult to understand already. Adding multithreading make them almost impossible for anybody to deal with, so they were (at least mostly) eliminated in favor of other wording.

Jerry Coffin