mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
Elide lifetimes
This commit is contained in:
parent
937e042c8f
commit
3a3ee4dedf
3 changed files with 9 additions and 9 deletions
|
@ -5620,8 +5620,8 @@ pub fn verify_fn(fn_val: FunctionValue<'_>) {
|
|||
}
|
||||
}
|
||||
|
||||
pub(crate) fn function_value_by_func_spec<'a, 'ctx>(
|
||||
env: &Env<'a, 'ctx, '_>,
|
||||
pub(crate) fn function_value_by_func_spec<'ctx>(
|
||||
env: &Env<'_, 'ctx, '_>,
|
||||
func_spec: FuncBorrowSpec,
|
||||
symbol: Symbol,
|
||||
) -> FunctionValue<'ctx> {
|
||||
|
@ -5631,8 +5631,8 @@ pub(crate) fn function_value_by_func_spec<'a, 'ctx>(
|
|||
function_value_by_name_help(env, symbol, fn_name)
|
||||
}
|
||||
|
||||
fn function_value_by_name_help<'a, 'ctx>(
|
||||
env: &Env<'a, 'ctx, '_>,
|
||||
fn function_value_by_name_help<'ctx>(
|
||||
env: &Env<'_, 'ctx, '_>,
|
||||
symbol: Symbol,
|
||||
fn_name: &str,
|
||||
) -> FunctionValue<'ctx> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue