Skip to content

Commit

Permalink
aya-bpf-cty: remove empty module
Browse files Browse the repository at this point in the history
This triggers the unused import lint after
rust-lang/rust@482275b.
  • Loading branch information
tamird committed Oct 24, 2023
1 parent 67fe16e commit b65a652
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions bpf/aya-bpf-cty/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit b65a652

Please sign in to comment.