Skip to content

Commit e373b93

Browse files
committed
Fix formatting
1 parent 27e25ff commit e373b93

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/builder.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1892,11 +1892,9 @@ impl<'a, 'gcc, 'tcx> Builder<'a, 'gcc, 'tcx> {
18921892
(rounded_min.value.to_bits(), rounded_max.value.to_bits())
18931893
};
18941894
fn compute_clamp_bounds<F: Float>(signed: bool, int_width: u64) -> (u128, u128) {
1895-
let rounded_min =
1896-
F::from_i128_r(int_min(signed, int_width), Round::TowardZero);
1895+
let rounded_min = F::from_i128_r(int_min(signed, int_width), Round::TowardZero);
18971896
assert_eq!(rounded_min.status, Status::OK);
1898-
let rounded_max =
1899-
F::from_u128_r(int_max(signed, int_width), Round::TowardZero);
1897+
let rounded_max = F::from_u128_r(int_max(signed, int_width), Round::TowardZero);
19001898
assert!(rounded_max.value.is_finite());
19011899
(rounded_min.value.to_bits(), rounded_max.value.to_bits())
19021900
}

0 commit comments

Comments
 (0)