diff options
author | Jonas Schievink <[email protected]> | 2021-05-19 22:35:09 +0100 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2021-05-19 22:35:09 +0100 |
commit | d4eb6708d9d62e951e6b594eb4481e944daa8bc3 (patch) | |
tree | fdb5a37e1cb811000e381aeacfe593edb193a0e9 /crates/hir_expand | |
parent | 7cb5920372017b81b954705c03d0b24e60c3e223 (diff) |
Track in-scope derive helpers during nameres
Diffstat (limited to 'crates/hir_expand')
-rw-r--r-- | crates/hir_expand/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_expand/src/lib.rs b/crates/hir_expand/src/lib.rs index b93c0c345..92c679dd2 100644 --- a/crates/hir_expand/src/lib.rs +++ b/crates/hir_expand/src/lib.rs | |||
@@ -237,7 +237,7 @@ struct EagerCallInfo { | |||
237 | 237 | ||
238 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 238 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
239 | pub struct MacroCallLoc { | 239 | pub struct MacroCallLoc { |
240 | pub(crate) def: MacroDefId, | 240 | pub def: MacroDefId, |
241 | pub(crate) krate: CrateId, | 241 | pub(crate) krate: CrateId, |
242 | eager: Option<EagerCallInfo>, | 242 | eager: Option<EagerCallInfo>, |
243 | pub kind: MacroCallKind, | 243 | pub kind: MacroCallKind, |