Skip to content

Commit

Permalink
Fix clippy::unnecessary_semicolon lints (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Feb 7, 2025
1 parent 4ec6b24 commit 00d4430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/with_winit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ impl ApplicationHandler<UserEvent> for VelloApp<'_> {
self.context
.resize_surface(surface, size.width, size.height);
window.request_redraw();
};
}
}
WindowEvent::MouseInput { state, button, .. } => {
if button == MouseButton::Left {
Expand Down
2 changes: 1 addition & 1 deletion vello/src/wgpu_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ impl<'a> TransientBindMap<'a> {
_ => bind_map.materialize_cpu_buf(proxy),
},
ResourceProxy::Image(_) => todo!(),
};
}
}
// Second pass takes immutable references
bindings
Expand Down

0 comments on commit 00d4430

Please sign in to comment.