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/libstd/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/libstd/num')
| -rw-r--r-- | src/libstd/num/f32.rs | 1 | ||||
| -rw-r--r-- | src/libstd/num/f64.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/libstd/num/f32.rs b/src/libstd/num/f32.rs index a04dfbeebe8..439ed406489 100644 --- a/src/libstd/num/f32.rs +++ b/src/libstd/num/f32.rs @@ -120,7 +120,6 @@ mod cmath { #[cfg(not(test))] #[lang = "f32"] -#[stable(feature = "rust1", since = "1.0.0")] impl f32 { /// Parses a float as with a given radix #[unstable(feature = "float_from_str_radix", reason = "recently moved API", diff --git a/src/libstd/num/f64.rs b/src/libstd/num/f64.rs index 329d3329be6..aa0e7df76ab 100644 --- a/src/libstd/num/f64.rs +++ b/src/libstd/num/f64.rs @@ -77,7 +77,6 @@ mod cmath { #[cfg(not(test))] #[lang = "f64"] -#[stable(feature = "rust1", since = "1.0.0")] impl f64 { /// Parses a float as with a given radix #[unstable(feature = "float_from_str_radix", reason = "recently moved API", |
