mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +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>);
|
||||
|
||||
impl PartialExprs {
|
||||
pub fn new_in<'a>(arena: &'a Bump) -> Self {
|
||||
pub fn new_in(arena: &Bump) -> Self {
|
||||
Self(BumpMap::new_in(arena))
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue