compiler/rust: remove unnecessary lifetimes

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
Eric Engestrom 2025-10-06 15:53:02 +02:00
parent cb57b77239
commit e825eac272

View file

@ -260,10 +260,10 @@ impl<K> BitSet<K> {
added_bits
}
pub fn s<'a>(
&'a self,
pub fn s(
&self,
_: RangeFull,
) -> BitSetStream<impl 'a + BitSetStreamTrait, K> {
) -> BitSetStream<impl '_ + BitSetStreamTrait, K> {
BitSetStream(
BitSetStreamFromBitSet {
iter: self.words.iter().copied(),