Skip to content

Commit c890912

Browse files
authoredApr 27, 2020
Rollup merge of #71605 - GuillaumeGomez:remove-e0750-from-whitelist, r=Dylan-DPC
No need to whitelist E0750 anymore Since #71304 has been fixed, no need to whitelist it anymore. r? @Dylan-DPC
2 parents efed49b + 116dca5 commit c890912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/tools/tidy/src/error_codes_check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const WHITELIST: &[&str] = &[
1717

1818
// Some error codes don't have any tests apparently...
1919
const IGNORE_EXPLANATION_CHECK: &[&str] =
20-
&["E0570", "E0601", "E0602", "E0639", "E0729", "E0749", "E0750", "E0751"];
20+
&["E0570", "E0601", "E0602", "E0639", "E0729", "E0749", "E0750"];
2121

2222
fn check_error_code_explanation(
2323
f: &str,

0 commit comments

Comments
 (0)
Please sign in to comment.