Merge pull request #9 from 2nd-Layer/main

ci: Ignore clippy needless_range_loop
This commit is contained in:
Mark Stopka 2021-12-20 21:54:56 +01:00 committed by GitHub
commit 0535a7334a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)?;
}