Skip to content

Commit

Permalink
Fix fmt in tool.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
NobodyXu authored Jan 12, 2025
1 parent c6eeade commit 172da47
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,10 +428,7 @@ impl Tool {

/// Supports using `--` delimiter to separate arguments and path to source files.
pub(crate) fn supports_path_delimiter(&self) -> bool {
matches!(
self.family,
ToolFamily::Msvc { clang_cl: true }
) && !self.cuda
matches!(self.family, ToolFamily::Msvc { clang_cl: true }) && !self.cuda
}
}

Expand Down

0 comments on commit 172da47

Please sign in to comment.