mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
Elide unnecessary lifetimes
This commit is contained in:
parent
a5de224626
commit
ae104c3791
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ enum PartialExprLink {
|
||||||
pub struct PartialExprs(BumpMap<Symbol, PartialExprLink>);
|
pub struct PartialExprs(BumpMap<Symbol, PartialExprLink>);
|
||||||
|
|
||||||
impl PartialExprs {
|
impl PartialExprs {
|
||||||
pub fn new_in<'a>(arena: &'a Bump) -> Self {
|
pub fn new_in(arena: &Bump) -> Self {
|
||||||
Self(BumpMap::new_in(arena))
|
Self(BumpMap::new_in(arena))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue