1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-04 00:54:07 +02:00

fixed write_int bad type size check

This commit is contained in:
Nicolas FOURNIER 2020-03-20 12:40:27 +01:00
commit 089035153b

View file

@ -166,7 +166,7 @@ where
});
}
if type_bit_size < USIZE_BITS {
if type_bit_size <= USIZE_BITS {
if T::is_signed() {
todo!()
} else {