about summary refs log tree commit diff
path: root/src/liballoc/boxed.rs
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2015-05-13 15:05:02 +1200
committerNick Cameron <ncameron@mozilla.com>2015-05-13 16:37:17 +1200
commitb799cd83cc797b580be2d1492e6ae014848636ee (patch)
tree5fa701213be462c1f0fede3c20624a4808db9d75 /src/liballoc/boxed.rs
parent31bb4ab759e4fa7c57f5d72ceb6b0189edf8a749 (diff)
downloadrust-b799cd83cc797b580be2d1492e6ae014848636ee.tar.gz
rust-b799cd83cc797b580be2d1492e6ae014848636ee.zip
Remove SNAP comments
Diffstat (limited to 'src/liballoc/boxed.rs')
-rw-r--r--src/liballoc/boxed.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 757c799d85c..35732dacd44 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -62,9 +62,9 @@ use core::ops::{Deref, DerefMut};
 use core::ptr::{Unique};
 use core::raw::{TraitObject};
 
-#[cfg(not(stage0))] // SNAP c64d671
+#[cfg(not(stage0))]
 use core::marker::Unsize;
-#[cfg(not(stage0))] // SNAP c64d671
+#[cfg(not(stage0))]
 use core::ops::CoerceUnsized;
 
 /// A value that represents the heap. This is the default place that the `box`
@@ -396,5 +396,5 @@ impl<'a,A,R> FnOnce<A> for Box<FnBox<A,Output=R>+Send+'a> {
     }
 }
 
-#[cfg(not(stage0))] // SNAP c64d671
+#[cfg(not(stage0))]
 impl<T: ?Sized+Unsize<U>, U: ?Sized> CoerceUnsized<Box<U>> for Box<T> {}