mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-01 04:18:20 +00:00
ci: Fix up release workflow
This commit is contained in:
parent
6d465579f9
commit
968d2467a8
3 changed files with 9 additions and 5 deletions
|
|
@ -3044,7 +3044,10 @@ impl IntValue {
|
|||
(8, true) => Self::I64(i64::from_le_bytes(bytes.try_into().unwrap())),
|
||||
(16, false) => Self::U128(u128::from_le_bytes(bytes.try_into().unwrap())),
|
||||
(16, true) => Self::I128(i128::from_le_bytes(bytes.try_into().unwrap())),
|
||||
_ => panic!("invalid integer size"),
|
||||
(len, is_signed) => {
|
||||
never!("invalid integer size: {len}, signed: {is_signed}");
|
||||
Self::I32(0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue