remove some unused fields from struct match arms and eliminate warning in main
This commit is contained in:
parent
0acd49f66c
commit
37cf2b165c
4 changed files with 4 additions and 32 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue