this one is different depending on the rust version
Some checks failed
Rust / build (pull_request) Failing after 1m15s

This commit is contained in:
Vinzenz Schroeter 2025-03-25 20:35:41 +01:00
parent 617c37c713
commit eba1a6a6be
2 changed files with 4 additions and 1 deletions

View file

@ -137,6 +137,9 @@
clippy
cargo-expand
cargo-tarpaulin
cargo-semver-checks
cargo-show-asm
cargo-flamegraph
];
})
];

View file

@ -417,7 +417,7 @@ pub struct EnumerateGrid<'t, T: Value> {
column: usize,
}
impl<'t, T: Value> Iterator for EnumerateGrid<'t, T> {
impl<T: Value> Iterator for EnumerateGrid<'_, T> {
type Item = (usize, usize, T);
fn next(&mut self) -> Option<Self::Item> {