reduce amount of warnings

This commit is contained in:
2025-09-11 20:17:18 +02:00
parent 4fa1a05fc3
commit 4faae86a6b
5 changed files with 9 additions and 19 deletions

View File

@@ -210,7 +210,7 @@ impl<'a> BoardInteraction<'a> for V3<'a> {
&self.config
}
fn get_battery_monitor(&mut self) -> &mut Box<(dyn BatteryInteraction + Send + 'static)> {
fn get_battery_monitor(&mut self) -> &mut Box<dyn BatteryInteraction + Send + 'static> {
&mut self.battery_monitor
}