This commit is contained in:
Folkert 2021-01-01 20:27:43 +01:00
parent 6eb8684c2b
commit f8a8c26d2d
2 changed files with 2 additions and 2 deletions

View file

@ -480,7 +480,7 @@ impl<'a> BorrowInfState<'a> {
Invoke { Invoke {
symbol, symbol,
call, call,
layout, layout: _,
pass, pass,
fail, fail,
} => { } => {

View file

@ -221,7 +221,7 @@ fn consume_expr(m: &VarMap, e: &Expr<'_>) -> bool {
} }
} }
fn consume_call(m: &VarMap, e: &crate::ir::Call<'_>) -> bool { fn consume_call(_: &VarMap, _: &crate::ir::Call<'_>) -> bool {
// variables bound by a call (or invoke) must always be consumed // variables bound by a call (or invoke) must always be consumed
true true
} }