From 116dca5d85b5f3655a804560fa665233e8373e45 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 27 Apr 2020 13:36:45 +0200 Subject: [PATCH] No need to whitelist E0750 anymore --- src/tools/tidy/src/error_codes_check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tidy/src/error_codes_check.rs b/src/tools/tidy/src/error_codes_check.rs index 243d41598f8..f7fd0c670d7 100644 --- a/src/tools/tidy/src/error_codes_check.rs +++ b/src/tools/tidy/src/error_codes_check.rs @@ -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,