Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/db.rs')
-rw-r--r--crates/hir-def/src/db.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/hir-def/src/db.rs b/crates/hir-def/src/db.rs
index d1190686fc..9cfb3621a8 100644
--- a/crates/hir-def/src/db.rs
+++ b/crates/hir-def/src/db.rs
@@ -2,7 +2,6 @@
use base_db::{Crate, SourceDatabase};
use hir_expand::{
EditionedFileId, HirFileId, InFile, Lookup, MacroCallId, MacroDefId, MacroDefKind,
- db::ExpandDatabase,
};
use salsa::{Durability, Setter};
use triomphe::Arc;
@@ -16,7 +15,7 @@ use crate::{
};
#[query_group::query_group]
-pub trait DefDatabase: ExpandDatabase + SourceDatabase {
+pub trait DefDatabase: SourceDatabase {
/// Computes an [`ItemTree`] for the given file or macro expansion.
#[salsa::invoke(file_item_tree)]
#[salsa::transparent]