Skip to content

Commit 8389cd3

Browse files
authored
Rollup merge of #86367 - m-ou-se:fix-abs-comment, r=scottmcm
Fix comment about rustc_inherit_overflow_checks in abs().
2 parents 83d9b1b + 13bfbb4 commit 8389cd3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/num/int_macros.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1772,9 +1772,9 @@ macro_rules! int_impl {
17721772
#[inline]
17731773
#[rustc_inherit_overflow_checks]
17741774
pub const fn abs(self) -> Self {
1775-
// Note that the #[inline] above means that the overflow
1776-
// semantics of the subtraction depend on the crate we're being
1777-
// inlined into.
1775+
// Note that the #[rustc_inherit_overflow_checks] and #[inline]
1776+
// above mean that the overflow semantics of the subtraction
1777+
// depend on the crate we're being called from.
17781778
if self.is_negative() {
17791779
-self
17801780
} else {

0 commit comments

Comments
 (0)