about summary refs log tree commit diff
path: root/src/libstd/thunk.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/thunk.rs')
-rw-r--r--src/libstd/thunk.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/thunk.rs b/src/libstd/thunk.rs
index fe39954f0d4..5bede984f13 100644
--- a/src/libstd/thunk.rs
+++ b/src/libstd/thunk.rs
@@ -17,9 +17,6 @@ use core::marker::Send;
 use core::ops::FnOnce;
 
 pub struct Thunk<'a, A=(),R=()> {
-    #[cfg(stage0)]
-    invoke: Box<Invoke<A,R>+Send>,
-    #[cfg(not(stage0))]
     invoke: Box<Invoke<A,R>+Send + 'a>,
 }