about summary refs log tree commit diff
path: root/src/libstd/thread_local
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-21 09:23:27 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-21 10:32:56 -0800
commit4ffde0814f43076c944f46890e0b6d401de92ca4 (patch)
tree4b1c7d0612d0901a4746724b103d61ef2a7cee0a /src/libstd/thread_local
parent9c999c797c12f3f79482f0f4f416567b6bcc2a63 (diff)
downloadrust-4ffde0814f43076c944f46890e0b6d401de92ca4.tar.gz
rust-4ffde0814f43076c944f46890e0b6d401de92ca4.zip
Test fixes and rebase conflicts
Diffstat (limited to 'src/libstd/thread_local')
-rw-r--r--src/libstd/thread_local/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/thread_local/mod.rs b/src/libstd/thread_local/mod.rs
index 24e46d8d88e..f7a2f8e10e9 100644
--- a/src/libstd/thread_local/mod.rs
+++ b/src/libstd/thread_local/mod.rs
@@ -459,6 +459,7 @@ mod imp {
 
     use cell::UnsafeCell;
     use mem;
+    use ptr;
     use sys_common::thread_local::StaticKey as OsStaticKey;
 
     #[doc(hidden)]