about summary refs log tree commit diff
path: root/src/libstd/reflect.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-11-05 08:25:32 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-11-06 20:24:36 -0800
commit4b770446b419e06d020c04ceb6ac7b8a63d2844d (patch)
treee080c40d7bf2f36b2a0af310efea37efe2e5ff7e /src/libstd/reflect.rs
parent22eb11c09ba8939ab06351eb5d14b355f632e197 (diff)
downloadrust-4b770446b419e06d020c04ceb6ac7b8a63d2844d.tar.gz
rust-4b770446b419e06d020c04ceb6ac7b8a63d2844d.zip
Register new snapshots
Diffstat (limited to 'src/libstd/reflect.rs')
-rw-r--r--src/libstd/reflect.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libstd/reflect.rs b/src/libstd/reflect.rs
index c841750d7ce..164dc75a515 100644
--- a/src/libstd/reflect.rs
+++ b/src/libstd/reflect.rs
@@ -382,13 +382,6 @@ impl<V:TyVisitor + MovePtr> TyVisitor for MovePtrAdaptor<V> {
         true
     }
 
-    #[cfg(stage0)]
-    fn visit_fn_output(&mut self, retstyle: uint, inner: *TyDesc) -> bool {
-        if ! self.inner.visit_fn_output(retstyle, inner) { return false; }
-        true
-    }
-
-    #[cfg(not(stage0))]
     fn visit_fn_output(&mut self, retstyle: uint, variadic: bool, inner: *TyDesc) -> bool {
         if ! self.inner.visit_fn_output(retstyle, variadic, inner) { return false; }
         true