mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Merge #3150
3150: Bump crate resolution limit for large projects r=matklad a=benbrittain Co-authored-by: Benjamin Brittain <bwb@google.com>
This commit is contained in:
commit
3615975001
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ where
|
|||
ReachedFixedPoint::Yes => break,
|
||||
ReachedFixedPoint::No => i += 1,
|
||||
}
|
||||
if i == 1000 {
|
||||
if i == 10000 {
|
||||
log::error!("name resolution is stuck");
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue