mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 13:20:05 -04:00
End statements with semicolon (clippy::semicolon_if_nothing_returned)
This commit is contained in:
@@ -6,7 +6,7 @@ pub fn adjust_colors(shape: &mut Shape, adjust_color: &impl Fn(&mut Color32)) {
|
||||
Shape::Noop => {}
|
||||
Shape::Vec(shapes) => {
|
||||
for shape in shapes {
|
||||
adjust_colors(shape, adjust_color)
|
||||
adjust_colors(shape, adjust_color);
|
||||
}
|
||||
}
|
||||
Shape::Circle(circle_shape) => {
|
||||
|
||||
Reference in New Issue
Block a user