about summary refs log tree commit diff
path: root/src/libstd/thread_local
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-12-17 21:33:15 +0000
committerbors <bors@rust-lang.org>2014-12-17 21:33:15 +0000
commit22a9f250b5e2de64c13c0f056aec13eb086ef79d (patch)
treed996edc2a0a259556be226b4f60437f961fb09b2 /src/libstd/thread_local
parent66c297d847ce06a8982d4d322221b17a3cd04f90 (diff)
parent5c98952409c9123b5f26b3c620029cd1914a07b6 (diff)
downloadrust-22a9f250b5e2de64c13c0f056aec13eb086ef79d.tar.gz
rust-22a9f250b5e2de64c13c0f056aec13eb086ef79d.zip
auto merge of #19958 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/libstd/thread_local')
-rw-r--r--src/libstd/thread_local/mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libstd/thread_local/mod.rs b/src/libstd/thread_local/mod.rs
index 2d5766c2393..76fb703514b 100644
--- a/src/libstd/thread_local/mod.rs
+++ b/src/libstd/thread_local/mod.rs
@@ -185,7 +185,6 @@ macro_rules! __thread_local_inner(
                 inner: ::std::cell::UnsafeCell { value: $init },
                 dtor_registered: ::std::cell::UnsafeCell { value: false },
                 dtor_running: ::std::cell::UnsafeCell { value: false },
-                marker: ::std::kinds::marker::NoCopy,
             }
         };
 
@@ -247,7 +246,6 @@ mod imp {
 
     use cell::UnsafeCell;
     use intrinsics;
-    use kinds::marker;
     use ptr;
 
     #[doc(hidden)]
@@ -264,9 +262,6 @@ mod imp {
         // these variables are thread-local, not global.
         pub dtor_registered: UnsafeCell<bool>, // should be Cell
         pub dtor_running: UnsafeCell<bool>, // should be Cell
-
-        // These shouldn't be copied around.
-        pub marker: marker::NoCopy,
     }
 
     #[doc(hidden)]