Skip to content

Commit 57af512

Browse files
committed
---
yaml --- r: 175087 b: refs/heads/master c: 970fd74 h: refs/heads/master i: 175085: 7eb44a8 175083: e798abf 175079: 5b13491 175071: d4da1e8 v: v3
1 parent 652acbe commit 57af512

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: c6c14b928f45302238f4dd4e32ee97e50af1bd6e
2+
refs/heads/master: 970fd747b9dffe6263e599bb0f2da63a59c0c51c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 777435990e0e91df6b72ce80c9b6fa485eeb5daa
55
refs/heads/try: 08f6380a9f0b866796080094f44fe25ea5636547

trunk/src/libcore/ops.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub trait Drop {
108108
// based on "op T" where T is expected to be `Copy`able
109109
macro_rules! forward_ref_unop {
110110
(impl $imp:ident, $method:ident for $t:ty) => {
111-
#[unstable]
111+
#[unstable = "recently added, waiting for dust to settle"]
112112
impl<'a> $imp for &'a $t {
113113
type Output = <$t as $imp>::Output;
114114

@@ -124,7 +124,7 @@ macro_rules! forward_ref_unop {
124124
// based on "T op U" where T and U are expected to be `Copy`able
125125
macro_rules! forward_ref_binop {
126126
(impl $imp:ident, $method:ident for $t:ty, $u:ty) => {
127-
#[unstable]
127+
#[unstable = "recently added, waiting for dust to settle"]
128128
impl<'a> $imp<$u> for &'a $t {
129129
type Output = <$t as $imp<$u>>::Output;
130130

@@ -134,7 +134,7 @@ macro_rules! forward_ref_binop {
134134
}
135135
}
136136

137-
#[unstable]
137+
#[unstable = "recently added, waiting for dust to settle"]
138138
impl<'a> $imp<&'a $u> for $t {
139139
type Output = <$t as $imp<$u>>::Output;
140140

@@ -144,7 +144,7 @@ macro_rules! forward_ref_binop {
144144
}
145145
}
146146

147-
#[unstable]
147+
#[unstable = "recently added, waiting for dust to settle"]
148148
impl<'a, 'b> $imp<&'a $u> for &'b $t {
149149
type Output = <$t as $imp<$u>>::Output;
150150

0 commit comments

Comments
 (0)