diff options
| author | tyler <tyler@brainiumstudios.com> | 2019-05-15 14:35:24 -0700 |
|---|---|---|
| committer | tyler <tyler@brainiumstudios.com> | 2019-05-15 14:35:24 -0700 |
| commit | 2c3796172ba2d41f15294e116cd8d993f026b7c2 (patch) | |
| tree | b5f7a235e7e060bfaf2f700314ba43a0a3562f8d /src/libstd/thread | |
| parent | 9289d03c9d263ac32a9dd0a5c581779fe1def7d3 (diff) | |
| download | rust-2c3796172ba2d41f15294e116cd8d993f026b7c2.tar.gz rust-2c3796172ba2d41f15294e116cd8d993f026b7c2.zip | |
fix wasm unused import in thread local implementation
Diffstat (limited to 'src/libstd/thread')
| -rw-r--r-- | src/libstd/thread/local.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/thread/local.rs b/src/libstd/thread/local.rs index 733c772a1f5..9b355aa2023 100644 --- a/src/libstd/thread/local.rs +++ b/src/libstd/thread/local.rs @@ -323,7 +323,6 @@ mod lazy { #[cfg(all(target_arch = "wasm32", not(target_feature = "atomics")))] pub mod statik { use super::lazy::LazyKeyInner; - use crate::cell::UnsafeCell; use crate::fmt; pub struct Key<T> { |
