Skip to content

Commit e24221b

Browse files
committed
clippy
1 parent ee7377e commit e24221b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/codegen/src/compile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ impl Compiler {
626626
// Push the next table onto the stack
627627
self.symbol_table_stack.push(table);
628628
// SAFETY: We just pushed, so it can't be empty
629-
unsafe { &self.symbol_table_stack.last().unwrap_unchecked() }
629+
unsafe { self.symbol_table_stack.last().unwrap_unchecked() }
630630
}
631631

632632
/// Pop the current symbol table off the stack

0 commit comments

Comments
 (0)