changed usize/isize static size types from u32/i32 to u64/i64

This commit is contained in:
mark 2023-05-10 20:02:36 +02:00
parent 924715cce1
commit ceddb886a9

View File

@ -123,8 +123,8 @@ pub mod run_function {
// implementations of ByteData for other data
type UsizeConstLen = u32;
type IsizeConstLen = i32;
type UsizeConstLen = u64;
type IsizeConstLen = i64;
impl ByteDataA for usize {
fn as_byte_data(&self, vec: &mut Vec<u8>) {