@@ -52,7 +52,7 @@ macro_rules! sh_impl_signed {
52
52
}
53
53
}
54
54
55
- #[ unstable ( feature = "wrapping_impls" , reason = "recently added" , issue = "30524 ") ]
55
+ #[ stable ( feature = "wrapping_impls" , since = "1.7.0 " ) ]
56
56
impl ShlAssign <$f> for Wrapping <$t> {
57
57
#[ inline( always) ]
58
58
fn shl_assign( & mut self , other: $f) {
@@ -74,7 +74,7 @@ macro_rules! sh_impl_signed {
74
74
}
75
75
}
76
76
77
- #[ unstable ( feature = "wrapping_impls" , reason = "recently added" , issue = "30524 ") ]
77
+ #[ stable ( feature = "wrapping_impls" , since = "1.7.0 " ) ]
78
78
impl ShrAssign <$f> for Wrapping <$t> {
79
79
#[ inline( always) ]
80
80
fn shr_assign( & mut self , other: $f) {
@@ -96,7 +96,7 @@ macro_rules! sh_impl_unsigned {
96
96
}
97
97
}
98
98
99
- #[ unstable ( feature = "wrapping_impls" , reason = "recently added" , issue = "30524 ") ]
99
+ #[ stable ( feature = "wrapping_impls" , since = "1.7.0 " ) ]
100
100
impl ShlAssign <$f> for Wrapping <$t> {
101
101
#[ inline( always) ]
102
102
fn shl_assign( & mut self , other: $f) {
@@ -114,7 +114,7 @@ macro_rules! sh_impl_unsigned {
114
114
}
115
115
}
116
116
117
- #[ unstable ( feature = "wrapping_impls" , reason = "recently added" , issue = "30524 ") ]
117
+ #[ stable ( feature = "wrapping_impls" , since = "1.7.0 " ) ]
118
118
impl ShrAssign <$f> for Wrapping <$t> {
119
119
#[ inline( always) ]
120
120
fn shr_assign( & mut self , other: $f) {
@@ -218,7 +218,7 @@ macro_rules! wrapping_impl {
218
218
}
219
219
}
220
220
221
- #[ unstable ( feature = "wrapping_impls" , reason = "recently added" , issue = "30524 ") ]
221
+ #[ stable ( feature = "wrapping_impls" , since = "1.7.0 " ) ]
222
222
impl Rem for Wrapping <$t> {
223
223
type Output = Wrapping <$t>;
224
224
0 commit comments