A point From N3290 C++ Draft : 12.2 Section .5th point ,line 10.
The second context is when a reference is bound to a temporary. The temporary to which the reference is bound or the temporary that is the complete object of a subobject to which the reference is bound persists for the lifetime of the reference except:
A temporary bound to a reference in a new-initializer (5.3.4) persists until the completion of the full-expression containing the new-initializer. [ Example:
struct S { int mi; const std::pair<int,int>& mp; }; S a { 1, {2,3} }; S* p = new S{ 1, {2,3} };// Creates dangling reference — end example ] [ Note: This may introduce a dangling reference,and implementations are encouraged to issue a warning in such a case. — end note ]
this is the added point when compare to c++03 ,here he gave an example ..But it is not understandable for me? Please can any one Explain this point with any other example .. Please ,Here i know about the DAngling reference & temporary objects. (std::pair-to hold two different data types.)