aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree.rs
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-05-27 14:52:15 +0100
committerLaurenČ›iu Nicola <[email protected]>2021-05-27 14:52:30 +0100
commit2268a220e4ba4ae6f45b564e5e88c2c62d22749d (patch)
tree0e77f330f8fee0353893f5ca4d49e8b9bb6f7f63 /crates/hir_def/src/item_tree.rs
parentd0a4ba294ccf0c925a5ff1115c19a60c6a24b734 (diff)
Don't store supertraits in ItemTree
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
-rw-r--r--crates/hir_def/src/item_tree.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs
index f84c4cf2b..c4d20c416 100644
--- a/crates/hir_def/src/item_tree.rs
+++ b/crates/hir_def/src/item_tree.rs
@@ -661,7 +661,6 @@ pub struct Trait {
661 pub generic_params: Interned<GenericParams>, 661 pub generic_params: Interned<GenericParams>,
662 pub is_auto: bool, 662 pub is_auto: bool,
663 pub is_unsafe: bool, 663 pub is_unsafe: bool,
664 pub bounds: Box<[Interned<TypeBound>]>,
665 pub items: Box<[AssocItem]>, 664 pub items: Box<[AssocItem]>,
666 pub ast_id: FileAstId<ast::Trait>, 665 pub ast_id: FileAstId<ast::Trait>,
667} 666}