Merge pull request #428 from dmitris/ref-in-deref

fix clippy needless_borrow warnings
pull/425/head
Michal Rostecki 2 years ago committed by GitHub
commit 13bc70eec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,7 +49,7 @@ fn codegen_internal_btf_bindings(opts: &Options) -> Result<(), anyhow::Error> {
.to_string(); .to_string();
// write the bindings, with the original helpers removed // write the bindings, with the original helpers removed
write_to_file(&generated.join("btf_internal_bindings.rs"), &bindings)?; write_to_file(generated.join("btf_internal_bindings.rs"), &bindings)?;
Ok(()) Ok(())
} }
@ -219,7 +219,7 @@ fn codegen_bindings(opts: &Options) -> Result<(), anyhow::Error> {
// write the bindings, with the original helpers removed // write the bindings, with the original helpers removed
write_to_file( write_to_file(
&generated.join(format!("linux_bindings_{}.rs", arch)), generated.join(format!("linux_bindings_{}.rs", arch)),
&bindings.to_string(), &bindings.to_string(),
)?; )?;
} }

@ -103,13 +103,13 @@ pub fn codegen(opts: &Options) -> Result<(), anyhow::Error> {
let generated = dir.join("src").join(arch.to_string()); let generated = dir.join("src").join(arch.to_string());
// write the bindings, with the original helpers removed // write the bindings, with the original helpers removed
write_to_file_fmt( write_to_file_fmt(
&generated.join("bindings.rs"), generated.join("bindings.rs"),
&tree.to_token_stream().to_string(), &tree.to_token_stream().to_string(),
)?; )?;
// write the new helpers as expanded by expand_helpers() // write the new helpers as expanded by expand_helpers()
write_to_file_fmt( write_to_file_fmt(
&generated.join("helpers.rs"), generated.join("helpers.rs"),
&format!("use super::bindings::*; {}", helpers), &format!("use super::bindings::*; {}", helpers),
)?; )?;
} }

Loading…
Cancel
Save