diff --git a/acpi_tables/src/sdt.rs b/acpi_tables/src/sdt.rs index 7efbf95c3..a300a74f7 100644 --- a/acpi_tables/src/sdt.rs +++ b/acpi_tables/src/sdt.rs @@ -38,7 +38,6 @@ pub struct Sdt { data: Vec, } -#[allow(clippy::len_without_is_empty)] impl Sdt { pub fn new( signature: [u8; 4], @@ -124,6 +123,10 @@ impl Sdt { pub fn len(&self) -> usize { self.data.len() } + + pub fn is_empty(&self) -> bool { + self.data.is_empty() + } } #[cfg(test)]