Skip to content

Commit

Permalink
crates/sel4-capdl-initializer: Address warning
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <nick@nickspinale.com>
  • Loading branch information
nspin committed Oct 28, 2024
1 parent 689b535 commit 4d8e464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sel4-capdl-initializer/types/src/cap_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub trait HasCapTable {
#[allow(clippy::type_complexity)]
fn slots_as<'a, T: TryFrom<&'a Cap>>(
&'a self,
) -> iter::Map<slice::Iter<'_, (usize, Cap)>, fn(&'a (usize, Cap)) -> (usize, T)>
) -> iter::Map<slice::Iter<'a, (usize, Cap)>, fn(&'a (usize, Cap)) -> (usize, T)>
where
<T as TryFrom<&'a Cap>>::Error: fmt::Debug,
{
Expand Down

0 comments on commit 4d8e464

Please sign in to comment.