remove some unused fields from struct match arms and eliminate warning in main

This commit is contained in:
Yehowshua Immanuel 2022-08-22 10:03:29 -04:00
parent 0acd49f66c
commit 37cf2b165c
4 changed files with 4 additions and 32 deletions

View file

@ -20,7 +20,7 @@ fn main() -> std::io::Result<()> {
let now = Instant::now();
let file = File::open(&args.path)?;
let vcd = parse_vcd(file).unwrap();
parse_vcd(file).unwrap();
let elapsed = now.elapsed();
println!("Elapsed: {:.2?}", elapsed);