fix(tvix/eval): fix current clippy warnings
It's been a while since the last time, so quite a lot of stuff has accumulated here. Change-Id: I0762827c197b30a917ff470fd8ae8f220f6ba247 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7597 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
67d508f2ec
commit
71174f6626
17 changed files with 69 additions and 108 deletions
|
|
@ -217,7 +217,7 @@ impl Value {
|
|||
if let Value::Thunk(t) = f {
|
||||
t.force(vm)?;
|
||||
let guard = t.value();
|
||||
call_to_string(&*guard, vm)
|
||||
call_to_string(&guard, vm)
|
||||
} else {
|
||||
call_to_string(f, vm)
|
||||
}
|
||||
|
|
@ -451,7 +451,7 @@ impl Value {
|
|||
if let Some(name) = &f.lambda.name {
|
||||
format!("the user-defined Nix function '{}'", name)
|
||||
} else {
|
||||
format!("a user-defined Nix function")
|
||||
"a user-defined Nix function".to_string()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue