We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83d9b1b + 13bfbb4 commit 8389cd3Copy full SHA for 8389cd3
library/core/src/num/int_macros.rs
@@ -1772,9 +1772,9 @@ macro_rules! int_impl {
1772
#[inline]
1773
#[rustc_inherit_overflow_checks]
1774
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.
+ // Note that the #[rustc_inherit_overflow_checks] and #[inline]
+ // above mean that the overflow semantics of the subtraction
+ // depend on the crate we're being called from.
1778
if self.is_negative() {
1779
-self
1780
} else {
0 commit comments