From 0f2ddfd9735da7855cd1713bd61b811884a42cec Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Tue, 10 Dec 2024 11:02:29 +0000 Subject: [PATCH] use new compiler --- esp-hal/src/gpio/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp-hal/src/gpio/mod.rs b/esp-hal/src/gpio/mod.rs index 1c96a76ad9..9d76487849 100644 --- a/esp-hal/src/gpio/mod.rs +++ b/esp-hal/src/gpio/mod.rs @@ -2459,7 +2459,7 @@ mod asynch { pin: Flex<'d, P>, } - impl<'d, P: InputPin> PinFuture<'d, P> { + impl PinFuture<'_, P> { fn pin_mask(&self) -> u32 { let bank = self.pin.gpio_bank(private::Internal); 1 << (self.pin.number() - bank.offset())