mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
Fix clippy lints
This commit is contained in:
parent
9989af1b97
commit
2efdef6029
7 changed files with 38 additions and 2 deletions
|
|
@ -87,6 +87,12 @@ impl<Backend: TimerQueueBackend> LinkPtr<Backend> {
|
|||
unsafe impl<Backend: TimerQueueBackend> Send for LinkPtr<Backend> {}
|
||||
unsafe impl<Backend: TimerQueueBackend> Sync for LinkPtr<Backend> {}
|
||||
|
||||
impl<Backend: TimerQueueBackend> Default for TimerQueue<Backend> {
|
||||
fn default() -> Self {
|
||||
Self::new()
|
||||
}
|
||||
}
|
||||
|
||||
impl<Backend: TimerQueueBackend> TimerQueue<Backend> {
|
||||
/// Make a new queue.
|
||||
pub const fn new() -> Self {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue