Why is my defaulted move constructor not noexcept? – Debian
According to the answer of this question, a default move constructor can be defined as noexcept under certain conditions. For instance, the following class generates a noexcept move constructor: class C {}; According to the answer to this question, a…