about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-03-07 16:29:39 -0800
committerAlex Crichton <alex@alexcrichton.com>2016-03-11 22:09:58 -0800
commita38bf6e23d13bd479cf89b338f0862395d22fd07 (patch)
treeb5439253a3d5147a919d45bcb82b0bb483bfc994
parent1c440bdaf25835a19f23c62c11cbd76bb0a4822f (diff)
downloadrust-a38bf6e23d13bd479cf89b338f0862395d22fd07.tar.gz
rust-a38bf6e23d13bd479cf89b338f0862395d22fd07.zip
core: Mark Wrapping impls as stable
These are all insta-stable anyway, so just properly tag them.
-rw-r--r--src/libcore/num/wrapping.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libcore/num/wrapping.rs b/src/libcore/num/wrapping.rs
index 7ccc15c2112..74abd6a4278 100644
--- a/src/libcore/num/wrapping.rs
+++ b/src/libcore/num/wrapping.rs
@@ -52,7 +52,7 @@ macro_rules! sh_impl_signed {
             }
         }
 
-        #[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
+        #[stable(feature = "wrapping_impls", since = "1.7.0")]
         impl ShlAssign<$f> for Wrapping<$t> {
             #[inline(always)]
             fn shl_assign(&mut self, other: $f) {
@@ -74,7 +74,7 @@ macro_rules! sh_impl_signed {
             }
         }
 
-        #[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
+        #[stable(feature = "wrapping_impls", since = "1.7.0")]
         impl ShrAssign<$f> for Wrapping<$t> {
             #[inline(always)]
             fn shr_assign(&mut self, other: $f) {
@@ -96,7 +96,7 @@ macro_rules! sh_impl_unsigned {
             }
         }
 
-        #[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
+        #[stable(feature = "wrapping_impls", since = "1.7.0")]
         impl ShlAssign<$f> for Wrapping<$t> {
             #[inline(always)]
             fn shl_assign(&mut self, other: $f) {
@@ -114,7 +114,7 @@ macro_rules! sh_impl_unsigned {
             }
         }
 
-        #[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
+        #[stable(feature = "wrapping_impls", since = "1.7.0")]
         impl ShrAssign<$f> for Wrapping<$t> {
             #[inline(always)]
             fn shr_assign(&mut self, other: $f) {
@@ -218,7 +218,7 @@ macro_rules! wrapping_impl {
             }
         }
 
-        #[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
+        #[stable(feature = "wrapping_impls", since = "1.7.0")]
         impl Rem for Wrapping<$t> {
             type Output = Wrapping<$t>;