We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18990b commit 7953b56Copy full SHA for 7953b56
library/std/src/sys/windows/thread_local_key.rs
@@ -42,7 +42,7 @@ unsafe fn run_keyless_dtors() {
42
// the case that this loop always terminates because we provide the
43
// guarantee that a TLS key cannot be set after it is flagged for
44
// destruction.
45
- while let Some((ptr, dtor)) = DESTRUCTORS.borrow_mut().pop() {
+ while let Some((ptr, dtor)) = { DESTRUCTORS.borrow_mut().pop() } {
46
(dtor)(ptr);
47
}
48
// We're done so free the memory.
0 commit comments