Skip to content

Commit 0a2f42b

Browse files
committed
Add missing lifetime parameters
1 parent 195d9b4 commit 0a2f42b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

esp-hal-embassy/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ where
8686
}
8787

8888
#[cfg(not(feature = "esp32"))]
89-
impl<T, DM, const N: u8> IntoErasedTimer for Alarm<T, DM, N>
89+
impl<T, DM, const N: u8> IntoErasedTimer for Alarm<'_, T, DM, N>
9090
where
9191
DM: esp_hal::Mode,
9292
Self: Into<ErasedTimer>,

esp-wifi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ where
244244
}
245245

246246
#[cfg(not(feature = "esp32"))]
247-
impl<T, DM, const N: u8> IntoErasedTimer for Alarm<T, DM, N>
247+
impl<T, DM, const N: u8> IntoErasedTimer for Alarm<'_, T, DM, N>
248248
where
249249
DM: esp_hal::Mode,
250250
Self: Into<ErasedTimer>,

0 commit comments

Comments
 (0)