Clean up more unused Nat stuff

This commit is contained in:
Richard Feldman 2024-01-24 23:32:10 -05:00
parent 76dcbee25f
commit 204cee7d60
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
5 changed files with 12 additions and 39 deletions

View file

@ -6845,7 +6845,6 @@ fn register_capturing_closure<'a>(
args,
closure_var,
ret,
env.target_info,
)
};

View file

@ -1817,7 +1817,6 @@ impl<'a> LambdaSet<'a> {
args: VariableSubsSlice,
closure_var: Variable,
ret_var: Variable,
target_info: TargetInfo,
) -> Result<Self, LayoutProblem> {
let mut env = Env::from_components(cache, subs, arena);
Self::from_var(&mut env, args, closure_var, ret_var).value()