You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a signal handler is executed as a result of a call to the std::raise function, then the execution of the handler is sequenced after the invocation of the std::raise function and before its return.
(The specification was introduced by N3910 which resolved CWG1441.)
It seems that we shouldn't say "sequenced after the invocation", since this usually means "sequenced after exiting the function", and when std::raise normally returns, "sequenced after the invocation" will mean "sequenced after its return".