Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xffxff committed Sep 25, 2023
1 parent 6de2773 commit 1a58029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lox-compile/src/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn compile_file(db: &dyn crate::Db, input_file: InputFile) -> Chunk {
let mut chunk = Chunk::default();
let mut compiler = Compiler::default();
for stmt in stmts {
compiler.compile_stmt(db, &stmt, &mut chunk);
compiler.compile_stmt(db, stmt, &mut chunk);
}
chunk
}
Expand Down

0 comments on commit 1a58029

Please sign in to comment.