What changes introduced in C++14 can potentially break a program written in C++11?
Note: In this post I consider a “breaking change” to be either, or both, of; 1. a change that will make legal C++11 ill-formed when compiled as C++14, and; 2. a change that will change the runtime behavior when compiled as C++14, vs C++11. C++11 vs C++14, what does the Standard say? The Standard draft …