Skip to content

Commit 4b81dfa

Browse files
committed
---
yaml --- r: 273062 b: refs/heads/beta c: a38bf6e h: refs/heads/master
1 parent ee503bf commit 4b81dfa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 1c440bdaf25835a19f23c62c11cbd76bb0a4822f
26+
refs/heads/beta: a38bf6e23d13bd479cf89b338f0862395d22fd07
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/libcore/num/wrapping.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ macro_rules! sh_impl_signed {
5252
}
5353
}
5454

55-
#[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
55+
#[stable(feature = "wrapping_impls", since = "1.7.0")]
5656
impl ShlAssign<$f> for Wrapping<$t> {
5757
#[inline(always)]
5858
fn shl_assign(&mut self, other: $f) {
@@ -74,7 +74,7 @@ macro_rules! sh_impl_signed {
7474
}
7575
}
7676

77-
#[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
77+
#[stable(feature = "wrapping_impls", since = "1.7.0")]
7878
impl ShrAssign<$f> for Wrapping<$t> {
7979
#[inline(always)]
8080
fn shr_assign(&mut self, other: $f) {
@@ -96,7 +96,7 @@ macro_rules! sh_impl_unsigned {
9696
}
9797
}
9898

99-
#[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
99+
#[stable(feature = "wrapping_impls", since = "1.7.0")]
100100
impl ShlAssign<$f> for Wrapping<$t> {
101101
#[inline(always)]
102102
fn shl_assign(&mut self, other: $f) {
@@ -114,7 +114,7 @@ macro_rules! sh_impl_unsigned {
114114
}
115115
}
116116

117-
#[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
117+
#[stable(feature = "wrapping_impls", since = "1.7.0")]
118118
impl ShrAssign<$f> for Wrapping<$t> {
119119
#[inline(always)]
120120
fn shr_assign(&mut self, other: $f) {
@@ -218,7 +218,7 @@ macro_rules! wrapping_impl {
218218
}
219219
}
220220

221-
#[unstable(feature = "wrapping_impls", reason = "recently added", issue = "30524")]
221+
#[stable(feature = "wrapping_impls", since = "1.7.0")]
222222
impl Rem for Wrapping<$t> {
223223
type Output = Wrapping<$t>;
224224

0 commit comments

Comments
 (0)