Skip to content

Commit

Permalink
typo fix and format check
Browse files Browse the repository at this point in the history
cargo fmt --check
  • Loading branch information
phoepsilonix committed Jan 12, 2025
1 parent a69d8bb commit 60669a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,10 @@ impl Build {

if compiler.supports_path_delimiter()
&& !is_assembler_msvc
&& matches!(compiler.family, ToolFamily::Clang { zig_cc: false } | ToolFamilt::Msvc { clang_cl: true })
&& matches!(
compiler.family,
ToolFamily::Clang { zig_cc: false } | ToolFamily::Msvc { clang_cl: true }
)
{
// #513: For `clang-cl`, separate flags/options from the input file.
// When cross-compiling macOS -> Windows, this avoids interpreting
Expand Down

0 comments on commit 60669a9

Please sign in to comment.