Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/item_tree.rs')
| -rw-r--r-- | crates/hir-def/src/item_tree.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/hir-def/src/item_tree.rs b/crates/hir-def/src/item_tree.rs index 6450e3a255..eb665f1941 100644 --- a/crates/hir-def/src/item_tree.rs +++ b/crates/hir-def/src/item_tree.rs @@ -798,7 +798,6 @@ pub struct MacroRules { /// The name of the declared macro. pub name: Name, pub ast_id: FileAstId<ast::MacroRules>, - pub def_site: Span, } /// "Macros 2.0" macro definition. @@ -807,7 +806,6 @@ pub struct Macro2 { pub name: Name, pub visibility: RawVisibilityId, pub ast_id: FileAstId<ast::MacroDef>, - pub def_site: Span, } impl Use { |