We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd853c0 commit b8eb1f1Copy full SHA for b8eb1f1
library/core/src/num/diy_float.rs
@@ -65,7 +65,7 @@ impl Fp {
65
f <<= 1;
66
e -= 1;
67
}
68
- debug_assert!(f >= (1 >> 63));
+ debug_assert!(f >= (1 << 63));
69
Fp { f, e }
70
71
0 commit comments