We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee7377e commit e24221bCopy full SHA for e24221b
crates/codegen/src/compile.rs
@@ -626,7 +626,7 @@ impl Compiler {
626
// Push the next table onto the stack
627
self.symbol_table_stack.push(table);
628
// SAFETY: We just pushed, so it can't be empty
629
- unsafe { &self.symbol_table_stack.last().unwrap_unchecked() }
+ unsafe { self.symbol_table_stack.last().unwrap_unchecked() }
630
}
631
632
/// Pop the current symbol table off the stack
0 commit comments