We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mismatched_lifetime_syntaxes
1 parent 5026609 commit c6614d4Copy full SHA for c6614d4
1 file changed
yjit/src/backend/ir.rs
@@ -528,13 +528,13 @@ pub enum Insn {
528
impl Insn {
529
/// Create an iterator that will yield a non-mutable reference to each
530
/// operand in turn for this instruction.
531
- pub(super) fn opnd_iter(&self) -> InsnOpndIterator {
+ pub(super) fn opnd_iter(&self) -> InsnOpndIterator<'_> {
532
InsnOpndIterator::new(self)
533
}
534
535
/// Create an iterator that will yield a mutable reference to each operand
536
/// in turn for this instruction.
537
- pub(super) fn opnd_iter_mut(&mut self) -> InsnOpndMutIterator {
+ pub(super) fn opnd_iter_mut(&mut self) -> InsnOpndMutIterator<'_> {
538
InsnOpndMutIterator::new(self)
539
540
0 commit comments