mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
use vec![]
This commit is contained in:
parent
a5ec269a4d
commit
d3f00c8c6d
1 changed files with 1 additions and 1 deletions
|
@ -454,7 +454,7 @@ impl ScopedIdentIds {
|
|||
Self {
|
||||
in_scope: BitVec::repeat(false, capacity),
|
||||
ident_ids,
|
||||
regions: std::iter::repeat(Region::zero()).take(capacity).collect(),
|
||||
regions: vec![Region::zero(); capacity],
|
||||
home,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue