Skip to content

Commit

Permalink
Fixed formatting with rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
RobMor committed Aug 17, 2019
1 parent 18c604f commit a82de17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cargo/core/compiler/custom_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ impl BuildOutput {
.split(|c: char| c.is_whitespace())
.filter(|w| w.chars().any(|c| !c.is_whitespace()));
let (mut library_paths, mut library_links) = (Vec::new(), Vec::new());

while let Some(flag) = flags_iter.next() {
if flag.starts_with("-l") || flag.starts_with("-L") {
// Check if this flag has no space before the value as is
Expand All @@ -528,7 +528,7 @@ impl BuildOutput {
"Flag in rustc-flags has no value in {}: {}",
whence,
value
}
},
}
}

Expand Down

0 comments on commit a82de17

Please sign in to comment.