unused cast removed

This commit is contained in:
Cássio Kirch
2018-07-15 21:35:08 -03:00
parent ad0e05ab57
commit 41c5d03fa9
-1
View File
@@ -9,7 +9,6 @@ pub fn cosh(mut x: f64) -> f64 {
ix &= 0x7fffffffffffffff;
x = f64::from_bits(ix);
let w = ix >> 32;
let w = w as u32;
/* |x| < log(2) */
if w < 0x3fe62e42 {