about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authortyler <tyler@brainiumstudios.com>2019-05-15 14:35:24 -0700
committertyler <tyler@brainiumstudios.com>2019-05-15 14:35:24 -0700
commit2c3796172ba2d41f15294e116cd8d993f026b7c2 (patch)
treeb5f7a235e7e060bfaf2f700314ba43a0a3562f8d /src/libstd
parent9289d03c9d263ac32a9dd0a5c581779fe1def7d3 (diff)
downloadrust-2c3796172ba2d41f15294e116cd8d993f026b7c2.tar.gz
rust-2c3796172ba2d41f15294e116cd8d993f026b7c2.zip
fix wasm unused import in thread local implementation
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/thread/local.rs1
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> {