Skip to content

Commit

Permalink
Make it compile with MSRV (1.65) again.
Browse files Browse the repository at this point in the history
  • Loading branch information
01mf02 committed Nov 7, 2024
1 parent 0ef6ea3 commit aecb06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaq-core/src/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ impl<S: Copy + Ord> Locals<S> {

let vars = self.vars.total;

for arg in &args {
for arg in args.iter() {
match arg {
Bind::Var(v) => self.vars.push(*v),
Bind::Fun(f) => self.push_arg(*f),
Expand Down

0 comments on commit aecb06c

Please sign in to comment.