ci: fix new clippy warnings (#6569)

This commit is contained in:
Michael Scholten
2024-05-18 10:09:37 +02:00
committed by GitHub
parent 35c6fd9924
commit daa89017da
11 changed files with 10 additions and 22 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ impl Stream for IntervalStream {
}
fn size_hint(&self) -> (usize, Option<usize>) {
(std::usize::MAX, None)
(usize::MAX, None)
}
}