mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
clippy
This commit is contained in:
parent
6523b38847
commit
f10262a41d
3 changed files with 8 additions and 4 deletions
|
@ -106,9 +106,9 @@ impl<'a> ExecutionState<'a> {
|
|||
if let Some((return_addr, block_depth)) = self.call_stack.pop_frame() {
|
||||
self.program_counter = return_addr as usize;
|
||||
self.block_depth = block_depth;
|
||||
return Action::Continue;
|
||||
Action::Continue
|
||||
} else {
|
||||
return Action::Break;
|
||||
Action::Break
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue