Skip to content

Commit 41c5d03

Browse files
committed
unused cast removed
1 parent ad0e05a commit 41c5d03

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/math/cosh.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ pub fn cosh(mut x: f64) -> f64 {
99
ix &= 0x7fffffffffffffff;
1010
x = f64::from_bits(ix);
1111
let w = ix >> 32;
12-
let w = w as u32;
1312

1413
/* |x| < log(2) */
1514
if w < 0x3fe62e42 {

0 commit comments

Comments
 (0)