compiler/rust: remove unnecessary lifetimes
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user