mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
Auto merge of #29761 - fabricedesre:no-wedriver-warning, r=mrobinson
Fix compiler warning introduced in 4aa8a1c418
<!-- Please describe your changes on the following line: -->
Make the compiler happy.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ X] `./mach build -d` does not report any errors
- [X ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ X] These changes do not require tests because this is just fixing a compiler warning
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
This commit is contained in:
commit
4998c65c42
1 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ fn compute_tick_duration(tick_actions: &ActionSequence) -> u64 {
|
|||
}
|
||||
},
|
||||
ActionsType::Key { actions: _ } => (),
|
||||
ActionsType::Wheel { actions } => todo!("Not implemented."),
|
||||
ActionsType::Wheel { .. } => todo!("Not implemented."),
|
||||
}
|
||||
duration
|
||||
}
|
||||
|
@ -189,7 +189,7 @@ impl Handler {
|
|||
}
|
||||
}
|
||||
},
|
||||
ActionsType::Wheel { actions } => todo!("Not implemented."),
|
||||
ActionsType::Wheel { .. } => todo!("Not implemented."),
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue