bpf(doc): Hide docs of bindings

Before this change, documentation of helper functions (defined by us,
not bindings) were not visible, because `use gen::*` was overriding them
with helpers coming from aya-bpf-bindings, which have the same names and
no docs.

Signed-off-by: Michal Rostecki <vadorovsky@gmail.com>
pull/269/head
Michal Rostecki 3 years ago
parent e68d734c68
commit 0e6e1dbdd6

@ -10,6 +10,7 @@
use core::mem::{self, MaybeUninit};
pub use aya_bpf_bindings::helpers as gen;
#[doc(hidden)]
pub use gen::*;
use crate::cty::{c_char, c_long, c_void};

Loading…
Cancel
Save