Skip to content

Commit

Permalink
Rollup merge of #71605 - GuillaumeGomez:remove-e0750-from-whitelist, …
Browse files Browse the repository at this point in the history
…r=Dylan-DPC

No need to whitelist E0750 anymore

Since #71304 has been fixed, no need to whitelist it anymore.

r? @Dylan-DPC
  • Loading branch information
Dylan-DPC authored Apr 27, 2020
2 parents efed49b + 116dca5 commit c890912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/error_codes_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const WHITELIST: &[&str] = &[

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

fn check_error_code_explanation(
f: &str,
Expand Down

0 comments on commit c890912

Please sign in to comment.