We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb7bd9 commit debe99fCopy full SHA for debe99f
fr32/src/reader.rs
@@ -76,8 +76,9 @@ impl<R: Read> Fr32Reader<R> {
76
// Safety: This is safe because the struct/data is aligned on
77
// a 16 byte boundary and can therefore be casted from u128
78
// to u8 without alignment safety issues.
79
+ #[allow(clippy::cast_slice_different_sizes)]
80
unsafe {
- &mut (*(&self.in_buffer.0 as *const [u8] as *mut [u128]))
81
+ &mut (*(&mut self.in_buffer.0 as *const [u8] as *mut [u128]))
82
}
83
#[cfg(not(target_arch = "aarch64"))]
84
self.in_buffer.0.as_slice_of::<u128>().unwrap()
0 commit comments