From c9983ff4adbd14f5da2316fa8fde05e251ab4d11 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 18 Jan 2022 15:29:33 +0000 Subject: [PATCH] arch: drop allow(clippy::transmute_ptr_to_ptr) It is not needed. Signed-off-by: Wei Liu --- arch/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/src/lib.rs b/arch/src/lib.rs index 8937a7597..ed430f79f 100644 --- a/arch/src/lib.rs +++ b/arch/src/lib.rs @@ -6,7 +6,6 @@ //! Implements platform specific functionality. //! Supported platforms: x86_64, aarch64. -#![allow(clippy::transmute_ptr_to_ptr)] #[macro_use] extern crate log;