mirror of
https://codeberg.org/icewind/bitbuffer.git
synced 2026-06-04 09:04:05 +02:00
fixed write_int bad type size check
This commit is contained in:
parent
57dcdbe9a0
commit
089035153b
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ where
|
|||
});
|
||||
}
|
||||
|
||||
if type_bit_size < USIZE_BITS {
|
||||
if type_bit_size <= USIZE_BITS {
|
||||
if T::is_signed() {
|
||||
todo!()
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue