mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-25 00:08:11 +08:00
Fix clippy lints (#2119)
This commit is contained in:
@@ -468,7 +468,7 @@ struct BitVectorIter<'a, const LENGTH: usize> {
|
||||
iter_index: usize,
|
||||
}
|
||||
|
||||
impl<'a, const LENGTH: usize> Iterator for BitVectorIter<'a, LENGTH> {
|
||||
impl<const LENGTH: usize> Iterator for BitVectorIter<'_, LENGTH> {
|
||||
type Item = usize;
|
||||
|
||||
fn next(&mut self) -> Option<Self::Item> {
|
||||
|
||||
Reference in New Issue
Block a user