arch, arch_gen, hypervisor: Remove some unnecessary clippy attributes

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2021-02-15 16:12:26 +00:00
committed by Sebastien Boeuf
parent cf6480f012
commit a330a1569a
3 changed files with 2 additions and 29 deletions

View File

@@ -6,13 +6,7 @@
//! Implements platform specific functionality.
//! Supported platforms: x86_64, aarch64.
#![allow(
clippy::unreadable_literal,
clippy::redundant_static_lifetimes,
clippy::cast_lossless,
clippy::transmute_ptr_to_ptr,
clippy::cast_ptr_alignment
)]
#![allow(clippy::transmute_ptr_to_ptr, clippy::redundant_static_lifetimes)]
extern crate anyhow;
extern crate byteorder;