Skip to content

Commit debe99f

Browse files
committed
fix: make things compile on aarch64 again
Make things mutable and also silence a Clippy warning.
1 parent beb7bd9 commit debe99f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fr32/src/reader.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ impl<R: Read> Fr32Reader<R> {
7676
// Safety: This is safe because the struct/data is aligned on
7777
// a 16 byte boundary and can therefore be casted from u128
7878
// to u8 without alignment safety issues.
79+
#[allow(clippy::cast_slice_different_sizes)]
7980
unsafe {
80-
&mut (*(&self.in_buffer.0 as *const [u8] as *mut [u128]))
81+
&mut (*(&mut self.in_buffer.0 as *const [u8] as *mut [u128]))
8182
}
8283
#[cfg(not(target_arch = "aarch64"))]
8384
self.in_buffer.0.as_slice_of::<u128>().unwrap()

0 commit comments

Comments
 (0)