From 6f22f512ec8e4fce13d2d3675b6549e867bea824 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 25 Jan 2021 12:43:17 -0800 Subject: [PATCH] tidy: Remove unnecessary trailing semicolon. This will cause a failure due to the warning after the next beta branch as https://github.com/rust-lang/rust/pull/79812 will hit beta. --- src/tools/tidy/src/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index d3a4454275965..cb84fd8be6fec 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -422,7 +422,7 @@ fn map_lib_features( mf(Err($msg), file, i + 1); continue; }}; - }; + } if let Some((ref name, ref mut f)) = becoming_feature { if f.tracking_issue.is_none() { f.tracking_issue = find_attr_val(line, "issue").and_then(handle_issue_none);