Bug fix: len() is must-use
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
a462b859fa
commit
5e216fe150
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue