Skip to content

Commit 3fb3c67

Browse files
committed
---
yaml --- r: 174703 b: refs/heads/snap-stage3 c: 970fd74 h: refs/heads/master i: 174701: 5112075 174699: 943844e 174695: 076d285 174687: 1129e64 v: v3
1 parent 58f82d7 commit 3fb3c67

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,7 +1,7 @@
11
---
22
refs/heads/master: a0f86de49748b472d4d189d9688b0d856c000914
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: c6c14b928f45302238f4dd4e32ee97e50af1bd6e
4+
refs/heads/snap-stage3: 970fd747b9dffe6263e599bb0f2da63a59c0c51c
55
refs/heads/try: 08f6380a9f0b866796080094f44fe25ea5636547
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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)