diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-04-26 13:42:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-26 13:42:32 +0200 |
| commit | 4a9b9765bb0bd77a1d201f5dcbf2e84adffa162a (patch) | |
| tree | dd2472a58f3350cb6bc99a4c53def403576c8273 /src | |
| parent | 3b3f7bd020b2ff39a14a4047c859675bced55213 (diff) | |
| parent | 4589bd57e992366a75eac8e488861019b11238a4 (diff) | |
| download | rust-4a9b9765bb0bd77a1d201f5dcbf2e84adffa162a.tar.gz rust-4a9b9765bb0bd77a1d201f5dcbf2e84adffa162a.zip | |
Rollup merge of #71571 - jplatte:patch-1, r=jonas-schievink
Fix since attribute for nonzero_bitor impl's Added in #69813, took a while to merge so the since attributes went out of date.
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/num/mod.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 0349678b07b..a259e293b0c 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -111,7 +111,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s } } - #[stable(feature = "nonzero_bitor", since = "1.43.0")] + #[stable(feature = "nonzero_bitor", since = "1.45.0")] impl BitOr for $Ty { type Output = Self; #[inline] @@ -122,7 +122,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s } } - #[stable(feature = "nonzero_bitor", since = "1.43.0")] + #[stable(feature = "nonzero_bitor", since = "1.45.0")] impl BitOr<$Int> for $Ty { type Output = Self; #[inline] @@ -134,7 +134,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s } } - #[stable(feature = "nonzero_bitor", since = "1.43.0")] + #[stable(feature = "nonzero_bitor", since = "1.45.0")] impl BitOr<$Ty> for $Int { type Output = $Ty; #[inline] @@ -146,7 +146,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s } } - #[stable(feature = "nonzero_bitor", since = "1.43.0")] + #[stable(feature = "nonzero_bitor", since = "1.45.0")] impl BitOrAssign for $Ty { #[inline] fn bitor_assign(&mut self, rhs: Self) { @@ -154,7 +154,7 @@ assert_eq!(size_of::<Option<core::num::", stringify!($Ty), ">>(), size_of::<", s } } - #[stable(feature = "nonzero_bitor", since = "1.43.0")] + #[stable(feature = "nonzero_bitor", since = "1.45.0")] impl BitOrAssign<$Int> for $Ty { #[inline] fn bitor_assign(&mut self, rhs: $Int) { |
