aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-27 15:27:56 +0100
committerGitHub <[email protected]>2021-05-27 15:27:56 +0100
commitcc5d8069219a0a52f9c98b6766d2421eaf4664d8 (patch)
tree0e77f330f8fee0353893f5ca4d49e8b9bb6f7f63 /crates/hir_def/src/item_tree.rs
parentd0a4ba294ccf0c925a5ff1115c19a60c6a24b734 (diff)
parent2268a220e4ba4ae6f45b564e5e88c2c62d22749d (diff)
Merge #9024
9024: internal: Don't store supertraits in ItemTree r=jonas-schievink a=lnicola Closes #9010 Co-authored-by: LaurenČ›iu Nicola <[email protected]>
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}