From a38bf6e23d13bd479cf89b338f0862395d22fd07 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 7 Mar 2016 16:29:39 -0800 Subject: [PATCH] core: Mark Wrapping impls as stable These are all insta-stable anyway, so just properly tag them. --- src/libcore/num/wrapping.rs | 10 +++++----- 1 file 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>;