Fix compile warnings on nightly

Should fix CI test.
This commit is contained in:
Ian Douglas Scott 2025-08-12 13:35:13 -07:00 committed by Ashley Wulber
parent 4031f584ef
commit 2fbf0081ea
5 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0-only
use crate::state::State;
use crate::wayland::protocols::a11y::A11yHandler;
use crate::{config::ScreenFilter, state::State};
use anyhow::{anyhow, Context, Result};
use cosmic_comp_config::NumlockState;
use cosmic_config::CosmicConfigEntry;

View file

@ -244,7 +244,7 @@ where
}
}
fn underlying_storage(&self, renderer: &mut R) -> Option<UnderlyingStorage> {
fn underlying_storage(&self, renderer: &mut R) -> Option<UnderlyingStorage<'_>> {
match self {
CosmicElement::Workspace(elem) => elem.underlying_storage(renderer),
CosmicElement::Cursor(elem) => elem.underlying_storage(renderer),