Re: More from C++ Now 2014

2014-05-19 Thread Namespace via Digitalmars-d
On Sunday, 18 May 2014 at 22:29:04 UTC, bearophile wrote: Undefined Behavior in C++; what is it, and why should I care: https://github.com/boostcon/cppnow_presentations_2014/blob/master/files/Undefined-Behavior.pdf?raw=true This reminds us to remove as much undefined behavior as possible from

Re: More from C++ Now 2014

2014-05-19 Thread Paulo Pinto via Digitalmars-d
On Sunday, 18 May 2014 at 18:03:26 UTC, bearophile wrote: Some more slides pack from C++ Now 2014: Undefined Behavior in C++; what is it, and why should I care: https://github.com/boostcon/cppnow_presentations_2014/blob/master/files/Undefined-Behavior.pdf?raw=true This reminds us to remove as

Re: More from C++ Now 2014

2014-05-19 Thread bearophile via Digitalmars-d
Namespace: dmd is right, so ldc has probably a bug. I think D specs don't yet require a defined behaviour for that code, so I think both outputs are correct. Bye, bearophile

Re: More from C++ Now 2014

2014-05-19 Thread qznc via Digitalmars-d
On Monday, 19 May 2014 at 08:20:54 UTC, Namespace wrote: On Sunday, 18 May 2014 at 22:29:04 UTC, bearophile wrote: Undefined Behavior in C++; what is it, and why should I care: https://github.com/boostcon/cppnow_presentations_2014/blob/master/files/Undefined-Behavior.pdf?raw=true This reminds

Re: More from C++ Now 2014

2014-05-19 Thread Joakim via Digitalmars-d
On Monday, 19 May 2014 at 09:26:23 UTC, qznc wrote: On Monday, 19 May 2014 at 08:20:54 UTC, Namespace wrote: On Sunday, 18 May 2014 at 22:29:04 UTC, bearophile wrote: Undefined Behavior in C++; what is it, and why should I care:

Re: More from C++ Now 2014

2014-05-18 Thread Ali Çehreli via Digitalmars-d
On 05/18/2014 11:03 AM, bearophile wrote: Some more slides pack from C++ Now 2014: For those of us who are in the Bay Area, we will have a trip report: http://www.meetup.com/SFBay-Association-of-C-C-Users/events/179180452/ Ali

Re: More from C++ Now 2014

2014-05-18 Thread bearophile via Digitalmars-d
Undefined Behavior in C++; what is it, and why should I care: https://github.com/boostcon/cppnow_presentations_2014/blob/master/files/Undefined-Behavior.pdf?raw=true This reminds us to remove as much undefined behavior as possible from D. Fixing some of those problems will break some D code.