diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-10 14:21:16 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-10 15:34:43 +1000 |
| commit | 7cbb736a602953f7e72735be1f57b7d155af3c19 (patch) | |
| tree | eb7084106bab3037711467d3912d7b71ca621bba | |
| parent | d1f5beeed5d9ed2274006c1d93c0608111774b7c (diff) | |
| download | rust-7cbb736a602953f7e72735be1f57b7d155af3c19.tar.gz rust-7cbb736a602953f7e72735be1f57b7d155af3c19.zip | |
Remove unused `derive(Clone)` on `MacroData`.
| -rw-r--r-- | compiler/rustc_resolve/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs index 2381623b841..01bcfec4bdc 100644 --- a/compiler/rustc_resolve/src/lib.rs +++ b/compiler/rustc_resolve/src/lib.rs @@ -961,7 +961,6 @@ struct DeriveData { has_derive_copy: bool, } -#[derive(Clone)] struct MacroData { ext: Lrc<SyntaxExtension>, rule_spans: Vec<(usize, Span)>, |
