Skip to content

Commit

Permalink
Fix clippy warnings (#2371)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz authored Dec 9, 2022
1 parent 8582fb3 commit c17c292
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bindgen/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ impl Builder {
.collect::<Vec<_>>();

match Bindings::generate(options, input_unsaved_files) {
GenerateResult::Ok(bindings) => Ok(bindings),
GenerateResult::Ok(bindings) => Ok(*bindings),
GenerateResult::ShouldRestart { header } => self
.header(header)
.generate_inline_functions(false)
Expand Down Expand Up @@ -2351,7 +2351,7 @@ fn ensure_libclang_is_loaded() {}

#[derive(Debug)]
enum GenerateResult {
Ok(Bindings),
Ok(Box<Bindings>),
/// Error variant raised when bindgen requires to run again with a newly generated header
/// input.
#[allow(dead_code)]
Expand Down Expand Up @@ -2624,11 +2624,11 @@ impl Bindings {

let (module, options, warnings) = codegen::codegen(context);

GenerateResult::Ok(Bindings {
GenerateResult::Ok(Box::new(Bindings {
options,
warnings,
module,
})
}))
}

/// Write these bindings as source text to a file.
Expand Down

0 comments on commit c17c292

Please sign in to comment.