Merge pull request #136 from nimrodshn/add_impl_pod_for_u128

Implement Pod for u128 and i128
pull/137/head
Alessandro Decina 3 years ago committed by GitHub
commit 6313ddfe0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,7 +46,7 @@ macro_rules! unsafe_impl_pod {
}
}
unsafe_impl_pod!(i8, u8, i16, u16, i32, u32, i64, u64);
unsafe_impl_pod!(i8, u8, i16, u16, i32, u32, i64, u64, u128, i128);
#[allow(non_camel_case_types)]
#[repr(C)]

Loading…
Cancel
Save