Skip to content

Commit 970fd74

Browse files
committed
add stability text like suggested in discussion
1 parent c6c14b9 commit 970fd74

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libcore/ops.rs

+4-4
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)