diff --git a/src/arm64/mod.rs b/src/arm64/mod.rs index 75f9cce..a331b07 100644 --- a/src/arm64/mod.rs +++ b/src/arm64/mod.rs @@ -3,8 +3,6 @@ #[allow(clippy::all)] #[allow(clippy::undocumented_unsafe_blocks)] -// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed. -#[cfg_attr(test, allow(deref_nullptr))] pub mod bindings; #[cfg(feature = "fam-wrappers")] pub mod fam_wrappers; diff --git a/src/x86_64/mod.rs b/src/x86_64/mod.rs index 0a71400..341ec3a 100644 --- a/src/x86_64/mod.rs +++ b/src/x86_64/mod.rs @@ -2,8 +2,6 @@ // SPDX-License-Identifier: Apache-2.0 #[allow(clippy::undocumented_unsafe_blocks)] #[allow(clippy::all)] -// Keep this until https://github.com/rust-lang/rust-bindgen/issues/1651 is fixed. -#[cfg_attr(test, allow(deref_nullptr))] pub mod bindings; #[cfg(feature = "fam-wrappers")] pub mod fam_wrappers;