Skip to content

Commit fbee47a

Browse files
committed
Fix overflow error on 32-bit.
1 parent cf3bfc9 commit fbee47a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/cargo/core/compiler/fingerprint.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,6 @@ impl EncodedDepInfo {
19641964
dst.push((val >> 8) as u8);
19651965
dst.push((val >> 16) as u8);
19661966
dst.push((val >> 24) as u8);
1967-
assert!(val >> 32 == 0);
19681967
}
19691968
}
19701969
}

0 commit comments

Comments
 (0)