mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
fix(clippy): do not need let binding
This commit is contained in:
parent
d08757f161
commit
3ea4858eb5
1 changed files with 1 additions and 2 deletions
|
@ -427,9 +427,8 @@ fn unique_num(val_type: Type, uvar: Variable) -> Type {
|
|||
let val_utype = attr_type(Bool::variable(uvar), val_type);
|
||||
|
||||
let num_utype = num_num(val_utype);
|
||||
let num_type = attr_type(Bool::variable(uvar), num_utype);
|
||||
|
||||
num_type
|
||||
attr_type(Bool::variable(uvar), num_utype)
|
||||
}
|
||||
|
||||
fn unique_integer(var_store: &mut VarStore, val_type: Type) -> (Variable, Type) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue