diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2015-11-06 00:13:46 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2015-11-06 00:13:46 +0300 |
| commit | 2ef07f05192c98c7441977420efde6730d730b25 (patch) | |
| tree | 70588884d3842a5a63bb8ae6d961f8a7a3a24d9f /src/libcore/num | |
| parent | 7839827a39c9f2eff7dd8146d167de574d09809b (diff) | |
| download | rust-2ef07f05192c98c7441977420efde6730d730b25.tar.gz rust-2ef07f05192c98c7441977420efde6730d730b25.zip | |
Remove stability annotations from trait impl items
Remove `stable` stability annotations from inherent impls
Diffstat (limited to 'src/libcore/num')
| -rw-r--r-- | src/libcore/num/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index c397d02d245..d3f63ab4a8c 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -1636,7 +1636,6 @@ macro_rules! impl_from { ($Small: ty, $Large: ty) => { #[stable(feature = "lossless_prim_conv", since = "1.5.0")] impl From<$Small> for $Large { - #[stable(feature = "lossless_prim_conv", since = "1.5.0")] #[inline] fn from(small: $Small) -> $Large { small as $Large |
