Skip to content

Commit a13537e

Browse files
committed
Make the CI happy
1 parent bcad389 commit a13537e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

agb-fixnum/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,10 @@ impl<I: FixedWidthInteger, const N: usize> Num<I, N> {
816816

817817
impl<I: FixedWidthInteger, const N: usize> Display for Num<I, N> {
818818
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
819-
let repr = self.0.to_i64().expect("Num<I, N>'s I can always be converted to i64");
819+
let repr = self
820+
.0
821+
.to_i64()
822+
.expect("Num<I, N>'s I can always be converted to i64");
820823
let mut integral = repr >> N;
821824
let mask = (1_i64 << N) - 1;
822825

0 commit comments

Comments
 (0)