fix clippy needless lifetimes (#769)
+ ignore them for bevy where we often want explicitness
This commit is contained in:
@@ -143,7 +143,7 @@ pub struct PathConvIter<'a> {
|
||||
deferred: Option<PathEvent>,
|
||||
}
|
||||
|
||||
impl<'l> Iterator for PathConvIter<'l> {
|
||||
impl Iterator for PathConvIter<'_> {
|
||||
type Item = PathEvent;
|
||||
fn next(&mut self) -> Option<PathEvent> {
|
||||
if self.deferred.is_some() {
|
||||
|
||||
Reference in New Issue
Block a user