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 3872f2e commit 1274978Copy full SHA for 1274978
src/bcf/record.rs
@@ -18,8 +18,8 @@ use htslib;
18
const MISSING_INTEGER: i32 = i32::MIN;
19
const VECTOR_END_INTEGER: i32 = i32::MIN + 1;
20
lazy_static!{
21
- static ref MISSING_FLOAT: f32 = f32::from_bits(0x7F800001);
22
- static ref VECTOR_END_FLOAT: f32 = f32::from_bits(0x7F800002);
+ static ref MISSING_FLOAT: f32 = Ieee754::from_bits(0x7F800001);
+ static ref VECTOR_END_FLOAT: f32 = Ieee754::from_bits(0x7F800002);
23
}
24
25
0 commit comments