Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/keys.rs')
| -rw-r--r-- | crates/hir_def/src/keys.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/keys.rs b/crates/hir_def/src/keys.rs index c554540391..07c4d083d6 100644 --- a/crates/hir_def/src/keys.rs +++ b/crates/hir_def/src/keys.rs @@ -31,7 +31,7 @@ pub const TYPE_PARAM: Key<ast::TypeParam, TypeParamId> = Key::new(); pub const LIFETIME_PARAM: Key<ast::LifetimeParam, LifetimeParamId> = Key::new(); pub const CONST_PARAM: Key<ast::ConstParam, ConstParamId> = Key::new(); -pub const MACRO: Key<ast::MacroCall, MacroDefId> = Key::new(); +pub const MACRO: Key<ast::Macro, MacroDefId> = Key::new(); pub const ATTR_MACRO: Key<ast::Item, MacroCallId> = Key::new(); pub const DERIVE_MACRO: Key<ast::Attr, Box<[MacroCallId]>> = Key::new(); |