Skip to content

Commit

Permalink
Format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adpaco-aws committed Aug 15, 2024
1 parent 0162d30 commit 9620601
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kani-driver/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,14 @@ impl<'a> StandaloneProjectBuilder<'a> {
let metadata = from_json(&self.metadata)?;

// Create the project with the artifacts built by the compiler.
let result = Project::try_new(self.session, self.outdir, Some(self.input), vec![metadata], None, None);
let result = Project::try_new(
self.session,
self.outdir,
Some(self.input),
vec![metadata],
None,
None,
);
if let Ok(project) = &result {
self.session.record_temporary_files(&project.artifacts);
}
Expand Down

0 comments on commit 9620601

Please sign in to comment.