Skip to content

Commit

Permalink
Fix stopwatch getting released immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
JakuJ committed Oct 27, 2023
1 parent 8372022 commit 000c701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prusti-server/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl<'a> Backend<'a> {
})
}
Backend::Lithium(lithium) => {
Stopwatch::start("prusti-server", "vir verification");
let _stopwatch = Stopwatch::start("prusti-server", "vir verification");
lithium.verify(program)
}
}
Expand Down

0 comments on commit 000c701

Please sign in to comment.