mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41: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 {
|
Self {
|
||||||
in_scope: BitVec::repeat(false, capacity),
|
in_scope: BitVec::repeat(false, capacity),
|
||||||
ident_ids,
|
ident_ids,
|
||||||
regions: std::iter::repeat(Region::zero()).take(capacity).collect(),
|
regions: vec![Region::zero(); capacity],
|
||||||
home,
|
home,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue