Also, remove mention of threads that were removed long ago.
Motivation: Make it easier to spot bugs such as #11654 and #12426
ACK fa03f777880cbe245676a3ac4d5b22d2bc93dbe9
ACK fa03f77.
Also, remove mention of threads that were removed long ago
380 | + 381 | + - *Rationale*: Initializing the members in the declaration makes it easy to spot uninitialized ones, 382 | + and avoids accidentally reading uninitialized memory 383 | + 384 | +```cpp 385 | +struct A {
You're talking about class members above, but using a struct here. I think there can be good (performance) arguments not to have an auto-generated constructor for a POD struct, so might be better to use a class for illustration.
My opinion is that such cases should just be justified with a comment:
int a; // Not initialized for performance reasons.
Anyway, fixed...
utACK fa94614