From 97030c940798431af3c8890710c0cce882773e22 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 12 Nov 2020 09:42:53 +0100 Subject: [PATCH] cleanup clippy leftovers this used to contain a pointer cast, now it doesn't Signed-off-by: Wolfgang Bumiller --- src/backup/dynamic_index.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/backup/dynamic_index.rs b/src/backup/dynamic_index.rs index 08f9cdff..df651906 100644 --- a/src/backup/dynamic_index.rs +++ b/src/backup/dynamic_index.rs @@ -219,7 +219,6 @@ impl IndexFile for DynamicIndexReader { (csum, chunk_end) } - #[allow(clippy::cast_ptr_alignment)] fn chunk_info(&self, pos: usize) -> Option { if pos >= self.index.len() { return None;