about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-10 14:21:16 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-10 15:34:43 +1000
commit7cbb736a602953f7e72735be1f57b7d155af3c19 (patch)
treeeb7084106bab3037711467d3912d7b71ca621bba
parentd1f5beeed5d9ed2274006c1d93c0608111774b7c (diff)
downloadrust-7cbb736a602953f7e72735be1f57b7d155af3c19.tar.gz
rust-7cbb736a602953f7e72735be1f57b7d155af3c19.zip
Remove unused `derive(Clone)` on `MacroData`.
-rw-r--r--compiler/rustc_resolve/src/lib.rs1
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)>,