about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-10-08 14:35:00 +0000
committerbors <bors@rust-lang.org>2021-10-08 14:35:00 +0000
commit87df4dd70f13f248a4d2d22cdd96ee59d161d741 (patch)
tree110a26575bdae65e6cdd9566738aaec9e65e4e57 /compiler/rustc_parse/src/parser
parente0aaffd8a45cd0e9f331ec7734713e9de11aa6c8 (diff)
parentff6601e0fc4dd05e337ebc4e0d3c741a0ef26078 (diff)
downloadrust-87df4dd70f13f248a4d2d22cdd96ee59d161d741.tar.gz
rust-87df4dd70f13f248a4d2d22cdd96ee59d161d741.zip
Auto merge of #89644 - matthiaskrgr:clippy_perf_okt, r=jyn514
some clippy::perf fixes
Diffstat (limited to 'compiler/rustc_parse/src/parser')
-rw-r--r--compiler/rustc_parse/src/parser/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs
index 79f46be73f6..3d29d305021 100644
--- a/compiler/rustc_parse/src/parser/expr.rs
+++ b/compiler/rustc_parse/src/parser/expr.rs
@@ -1096,7 +1096,7 @@ impl<'a> Parser<'a> {
             (Err(ref mut err), Some((mut snapshot, ExprKind::Path(None, path)))) => {
                 let name = pprust::path_to_string(&path);
                 snapshot.bump(); // `(`
-                match snapshot.parse_struct_fields(path.clone(), false, token::Paren) {
+                match snapshot.parse_struct_fields(path, false, token::Paren) {
                     Ok((fields, ..)) if snapshot.eat(&token::CloseDelim(token::Paren)) => {
                         // We have are certain we have `Enum::Foo(a: 3, b: 4)`, suggest
                         // `Enum::Foo { a: 3, b: 4 }` or `Enum::Foo(3, 4)`.