Skip to content

Commit

Permalink
Run cargo +nightly fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kulp committed Jun 1, 2022
1 parent 1b05d08 commit 62e76e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,10 @@ where
let verbose = matches.is_present("verbose");

if matches.is_present("V") {
println!("bindgen {}", option_env!("CARGO_PKG_VERSION").unwrap_or("unknown"));
println!(
"bindgen {}",
option_env!("CARGO_PKG_VERSION").unwrap_or("unknown")
);
if verbose {
println!("Clang version: {}", crate::clang_version().full);
}
Expand Down

0 comments on commit 62e76e8

Please sign in to comment.