Skip to content

Commit f47a63c

Browse files
authored
Rollup merge of #110895 - Ayush1325:thread-local-fix, r=thomcc
Remove `all` in target_thread_local cfg I think it was left there by mistake after the previous refactoring. I just came across it while rebasing to master.
2 parents be4f9f5 + be413ae commit f47a63c

File tree

1 file changed

+1
-1
lines changed
  • library/std/src/sys/common/thread_local

1 file changed

+1
-1
lines changed

library/std/src/sys/common/thread_local/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cfg_if::cfg_if! {
66
mod static_local;
77
#[doc(hidden)]
88
pub use static_local::{Key, thread_local_inner};
9-
} else if #[cfg(all(target_thread_local))] {
9+
} else if #[cfg(target_thread_local)] {
1010
#[doc(hidden)]
1111
mod fast_local;
1212
#[doc(hidden)]

0 commit comments

Comments
 (0)