Skip to content

Fix clippy warnings #2371

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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