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
STYLE: Replace once_flag of ThreadPoolGlobals with static local variable
A static local `bool` variable is more _lightweight_ than a `std::once_flag`
data member, while its (static) initialization just as thread-safe as
`std::call_once`.
0 commit comments