Bring back LRU limit for macro_expand query

This commit is contained in:
Lukas Wirth 2023-04-16 21:30:04 +02:00
parent 4ea5d7f6a0
commit 76718ea2fc
2 changed files with 6 additions and 2 deletions

View file

@ -166,6 +166,12 @@ impl RootDatabase {
.copied()
.unwrap_or(base_db::DEFAULT_LRU_CAP),
);
hir_db::MacroExpandQuery.in_db_mut(self).set_lru_capacity(
lru_capacities
.get(stringify!(MacroExpandQuery))
.copied()
.unwrap_or(base_db::DEFAULT_LRU_CAP),
);
macro_rules! update_lru_capacity_per_query {
($( $module:ident :: $query:ident )*) => {$(