Clippy check & update CI (#73)

* updated CI workflow with clippy & fmt
This commit is contained in:
Jean-Philippe Bossuat
2025-08-17 13:02:47 +02:00
committed by GitHub
parent 3a828740cc
commit 0be569eca0
125 changed files with 1033 additions and 530 deletions

View File

@@ -94,7 +94,7 @@ where
let data: Vec<u8> = alloc_aligned::<u8>(Self::bytes_of(n, cols, size));
Self {
data: data.into(),
n: n,
n,
cols,
size,
max_size: size,
@@ -107,7 +107,7 @@ where
assert!(data.len() == Self::bytes_of(n, cols, size));
Self {
data: data.into(),
n: n,
n,
cols,
size,
max_size: size,