mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-18 18:38:05 +08:00
Fix the remaining clippy warnings across the workspace
This commit is contained in:
@@ -992,9 +992,8 @@ pub fn sum(_: impl Ctx, values: IList<f64>) -> f64 {
|
||||
#[node_macro::node(category("Math: Numeric"))]
|
||||
fn average(_: impl Ctx, values: IList<f64>) -> f64 {
|
||||
let count = values.len();
|
||||
let average = if count == 0 { 0. } else { values.iter().sum::<f64>() / count as f64 };
|
||||
|
||||
average
|
||||
if count == 0 { 0. } else { values.iter().sum::<f64>() / count as f64 }
|
||||
}
|
||||
|
||||
/// Gives the smallest number in the input list. An empty list gives 0.
|
||||
|
||||
Reference in New Issue
Block a user