Skip to content

Commit fe4904b

Browse files
authored
Format
1 parent 326454a commit fe4904b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/std/src/sys/thread_local/statik.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ pub macro thread_local_inner {
1717
// NOTE: Please update the shadowing test in `tests/thread.rs` if these types are renamed.
1818
unsafe {
1919
$crate::thread::LocalKey::new(|_| {
20-
static VAL: $crate::thread::local_impl::EagerStorage<$t> = $crate::thread::local_impl::EagerStorage { value: __INIT };
20+
static VAL: $crate::thread::local_impl::EagerStorage<$t> =
21+
$crate::thread::local_impl::EagerStorage { value: __INIT };
2122
&VAL.value
2223
})
2324
}

0 commit comments

Comments
 (0)