mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
compiler/rust: remove unnecessary lifetimes
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
parent
cb57b77239
commit
e825eac272
1 changed files with 3 additions and 3 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue