aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
-rw-r--r--crates/hir_def/src/item_tree.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs
index 9f6bb3a7c..69a313c7e 100644
--- a/crates/hir_def/src/item_tree.rs
+++ b/crates/hir_def/src/item_tree.rs
@@ -694,7 +694,7 @@ pub enum ModKind {
694#[derive(Debug, Clone, Eq, PartialEq)] 694#[derive(Debug, Clone, Eq, PartialEq)]
695pub struct MacroCall { 695pub struct MacroCall {
696 /// Path to the called macro. 696 /// Path to the called macro.
697 pub path: ModPath, 697 pub path: Interned<ModPath>,
698 pub ast_id: FileAstId<ast::MacroCall>, 698 pub ast_id: FileAstId<ast::MacroCall>,
699} 699}
700 700