Adjust for changed cast function
This commit is contained in:
parent
b91c39da73
commit
b870667509
9
build.rs
9
build.rs
|
@ -2135,12 +2135,13 @@ fn floatunsisf() {
|
||||||
Self: Sized,
|
Self: Sized,
|
||||||
{
|
{
|
||||||
let a = gen_u128(rng);
|
let a = gen_u128(rng);
|
||||||
Some(
|
let f_a = f32(a);
|
||||||
|
f_a.ok().map(|f| {
|
||||||
Floatuntisf {
|
Floatuntisf {
|
||||||
a,
|
a,
|
||||||
b: to_u32(f32(a)),
|
b: to_u32(f),
|
||||||
},
|
}
|
||||||
)
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn to_string(&self, buffer: &mut String) {
|
fn to_string(&self, buffer: &mut String) {
|
||||||
|
|
Loading…
Reference in New Issue