diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2015-05-13 15:05:02 +1200 |
|---|---|---|
| committer | Nick Cameron <ncameron@mozilla.com> | 2015-05-13 16:37:17 +1200 |
| commit | b799cd83cc797b580be2d1492e6ae014848636ee (patch) | |
| tree | 5fa701213be462c1f0fede3c20624a4808db9d75 /src/liballoc/rc.rs | |
| parent | 31bb4ab759e4fa7c57f5d72ceb6b0189edf8a749 (diff) | |
| download | rust-b799cd83cc797b580be2d1492e6ae014848636ee.tar.gz rust-b799cd83cc797b580be2d1492e6ae014848636ee.zip | |
Remove SNAP comments
Diffstat (limited to 'src/liballoc/rc.rs')
| -rw-r--r-- | src/liballoc/rc.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs index 15d6e6fa960..f2b83fdeefa 100644 --- a/src/liballoc/rc.rs +++ b/src/liballoc/rc.rs @@ -228,7 +228,7 @@ impl<T> !marker::Sync for Rc<T> {} #[cfg(not(stage0))] impl<T: ?Sized> !marker::Sync for Rc<T> {} -#[cfg(not(stage0))] // SNAP c64d671 +#[cfg(not(stage0))] impl<T: ?Sized+Unsize<U>, U: ?Sized> CoerceUnsized<Rc<U>> for Rc<T> {} impl<T> Rc<T> { @@ -459,7 +459,7 @@ impl<T: ?Sized> Deref for Rc<T> { } } -#[cfg(stage0)] // SNAP c64d671 +#[cfg(stage0)] #[stable(feature = "rust1", since = "1.0.0")] impl<T> Drop for Rc<T> { /// Drops the `Rc<T>`. @@ -510,7 +510,7 @@ impl<T> Drop for Rc<T> { } } -#[cfg(not(stage0))] // SNAP c64d671 +#[cfg(not(stage0))] #[stable(feature = "rust1", since = "1.0.0")] impl<T: ?Sized> Drop for Rc<T> { /// Drops the `Rc<T>`. @@ -930,7 +930,7 @@ impl<T: ?Sized> Weak<T> { } } -#[cfg(stage0)] // SNAP c64d671 +#[cfg(stage0)] #[stable(feature = "rust1", since = "1.0.0")] impl<T> Drop for Weak<T> { /// Drops the `Weak<T>`. @@ -975,7 +975,7 @@ impl<T> Drop for Weak<T> { } } -#[cfg(not(stage0))] // SNAP c64d671 +#[cfg(not(stage0))] #[stable(feature = "rust1", since = "1.0.0")] impl<T: ?Sized> Drop for Weak<T> { /// Drops the `Weak<T>`. |
