Skip to content

Commit 9586643

Browse files
committed
Bump nonzero_div feature to Rust 1.51
1 parent 1e9e30d commit 9586643

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/num/nonzero.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ nonzero_leading_trailing_zeros! {
267267
macro_rules! nonzero_integers_div {
268268
( $( $Ty: ident($Int: ty); )+ ) => {
269269
$(
270-
#[stable(feature = "nonzero_div", since = "1.50.0")]
270+
#[stable(feature = "nonzero_div", since = "1.51.0")]
271271
impl Div<$Ty> for $Int {
272272
type Output = $Int;
273273
/// This operation rounds towards zero,
@@ -280,7 +280,7 @@ macro_rules! nonzero_integers_div {
280280
}
281281
}
282282

283-
#[stable(feature = "nonzero_div", since = "1.50.0")]
283+
#[stable(feature = "nonzero_div", since = "1.51.0")]
284284
impl Rem<$Ty> for $Int {
285285
type Output = $Int;
286286
/// This operation satisfies `n % d == n - (n / d) * d`, and cannot panic.

0 commit comments

Comments
 (0)