mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Fix missed clippy warning from newer compiler
This commit is contained in:
parent
5066b19901
commit
0f9e735e60
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ where
|
|||
/// build_proc creates a procedure and outputs it to the wrapped object writer.
|
||||
fn build_proc(&mut self, proc: Proc<'a>) -> Result<(&'a [u8], &[Relocation]), String> {
|
||||
self.reset();
|
||||
self.load_args(&proc.args, &proc.ret_layout)?;
|
||||
self.load_args(proc.args, &proc.ret_layout)?;
|
||||
// let start = std::time::Instant::now();
|
||||
self.scan_ast(&proc.body);
|
||||
self.create_free_map();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue