avoid warnings

This commit is contained in:
Rasoul Akhavan Mahdavi
2025-11-05 20:38:20 -05:00
parent 18652da7e0
commit dc2d399602
3 changed files with 12 additions and 12 deletions

View File

@@ -59,7 +59,7 @@ where
res_basek: usize,
res: &mut R,
res_col: usize,
a_basek: usize,
_a_basek: usize,
a: &A,
a_col: usize,
scratch: &mut Scratch<Self>,
@@ -74,7 +74,7 @@ where
{
assert_eq!(res.n(), a.n());
assert_eq!(
res_basek, a_basek,
res_basek, _a_basek,
"res_basek != a_basek -> base2k conversion is not supported"
)
}