Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b323bb7

Browse files
committedSep 25, 2020
Auto merge of #6083 - mikerite:dev-fmt-20200925, r=<try>
Remove rustfmt bug workaround rust-lang/rustfmt#1873 was fixed earlier this year. changelog: none
2 parents cc1998f + c8b9093 commit b323bb7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

‎clippy_dev/src/fmt.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,7 @@ pub fn run(check: bool, verbose: bool) {
4747
let entry = entry?;
4848
let path = entry.path();
4949

50-
if path.extension() != Some("rs".as_ref())
51-
|| entry.file_name() == "ice-3891.rs"
52-
// Avoid rustfmt bug rust-lang/rustfmt#1873
53-
|| cfg!(windows) && entry.file_name() == "implicit_hasher.rs"
54-
{
50+
if path.extension() != Some("rs".as_ref()) || entry.file_name() == "ice-3891.rs" {
5551
continue;
5652
}
5753

0 commit comments

Comments
 (0)
Failed to load comments.