From b65a6529911a47c01e1beb83e74cc7c162c82466 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 24 Oct 2023 10:54:24 -0400 Subject: [PATCH] aya-bpf-cty: remove empty module This triggers the unused import lint after https://github.com/rust-lang/rust/commit/482275b19422b871b986ec0400257a. --- bpf/aya-bpf-cty/src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/bpf/aya-bpf-cty/src/lib.rs b/bpf/aya-bpf-cty/src/lib.rs index e40645f5..4a62a0d9 100644 --- a/bpf/aya-bpf-cty/src/lib.rs +++ b/bpf/aya-bpf-cty/src/lib.rs @@ -12,8 +12,6 @@ pub use ad::*; // OD = OS dependent pub use od::*; -// PWD = Pointer Width Dependent -pub use pwd::*; #[cfg(target_arch = "bpf")] mod ad { @@ -106,12 +104,6 @@ mod od { pub type c_ulong = u64; } -#[cfg(target_pointer_width = "32")] -mod pwd {} - -#[cfg(target_pointer_width = "64")] -mod pwd {} - pub type int8_t = i8; pub type int16_t = i16; pub type int32_t = i32;