Browse Source

Merge pull request #136 from nimrodshn/add_impl_pod_for_u128

Implement Pod for u128 and i128
Alessandro Decina 3 years ago
parent
commit
6313ddfe0c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      aya/src/bpf.rs

+ 1 - 1
aya/src/bpf.rs

@@ -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)]