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

Revert "fixed write_int bad type size check"

This reverts commit 089035153b.
This commit is contained in:
Nicolas FOURNIER 2020-04-04 17:00:46 +02:00
commit d26a535852

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 {