ci: Ignore clippy needless_range_loop

This commit is contained in:
Mark Stopka 2021-12-20 21:50:38 +01:00
parent 99474e8c5e
commit 4a76d304ec

View file

@ -93,6 +93,7 @@ where
let mut output = Vec::<D>::with_capacity(len);
#[allow(clippy::needless_range_loop)]
for i in 0..(len - 1) {
output[i] = D::decode_payload(d)?;
}