Remove all in target_thread_local cfg

I think it was left there by mistake after previous refactoring.

Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
This commit is contained in:
Ayush Singh 2023-04-27 18:21:14 +05:30
parent 8b8110e146
commit be413ae527
No known key found for this signature in database
GPG Key ID: 05CEF5C789E55A74
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ cfg_if::cfg_if! {
mod static_local;
#[doc(hidden)]
pub use static_local::{Key, thread_local_inner};
} else if #[cfg(all(target_thread_local))] {
} else if #[cfg(target_thread_local)] {
#[doc(hidden)]
mod fast_local;
#[doc(hidden)]