File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,19 @@ pub struct DelayedLints {
1717/// and then there's a gap where no lints can be emitted until HIR is done.
1818/// The variants in this enum represent lints that are temporarily stashed during
1919/// AST lowering to be emitted once HIR is built.
20- #[ derive( Clone , Debug , HashStable_Generic ) ]
20+ #[ derive( Debug , HashStable_Generic ) ]
2121pub enum DelayedLint {
2222 AttributeParsing ( AttributeLint < HirId > ) ,
2323}
2424
25- #[ derive( Clone , Debug , HashStable_Generic ) ]
25+ #[ derive( Debug , HashStable_Generic ) ]
2626pub struct AttributeLint < Id > {
2727 pub id : Id ,
2828 pub span : Span ,
2929 pub kind : AttributeLintKind ,
3030}
3131
32- #[ derive( Clone , Debug , HashStable_Generic ) ]
32+ #[ derive( Debug , HashStable_Generic ) ]
3333pub enum AttributeLintKind {
3434 /// Copy of `IllFormedAttributeInput`
3535 /// specifically for the `invalid_macro_export_arguments` lint until that is removed,
You can’t perform that action at this time.
0 commit comments