diff --git a/src/array.rs b/src/array.rs index 3d77b4a..8d043e4 100644 --- a/src/array.rs +++ b/src/array.rs @@ -48,7 +48,7 @@ impl Index for () { #[inline(always)] fn to_usize(self) -> usize { 0 } #[inline(always)] - fn from(ix: usize) -> Self { () } + fn from(_ix: usize) -> Self { () } } impl Index for bool {