32 Thread support library [thread]

32.4 Threads [thread.threads]

32.4.2 Class thread [thread.thread.class]

32.4.2.3 Destructor [thread.thread.destr]

~thread();
Effects: If joinable(), calls terminate().
Otherwise, has no effects.
Note
:
Either implicitly detaching or joining a joinable() thread in its destructor could result in difficult to debug correctness (for detach) or performance (for join) bugs encountered only when an exception is thrown.
Thus the programmer must ensure that the destructor is never executed while the thread is still joinable.
— end note
 ]