Bug fix: len() is must-use

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-24 13:08:05 -07:00 committed by GitHub
parent a462b859fa
commit 5e216fe150
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -61,7 +61,7 @@ fn parse_archive_with_comment(bench: &mut Bencher) {
bench.bench_n(1, |_| {
let archive = ZipArchive::new(Cursor::new(bytes.as_slice())).unwrap();
archive.comment().len();
let _ = archive.comment().len();
});
bench.bytes = bytes.len() as u64;
}