Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` error: field `0` is never read --> bpf/aya-bpf/src/helpers.rs:737:22 | 737 | pub struct PrintkArg(u64); | --------- ^^^ | | | field in this struct | = note: `PrintkArg` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis = note: `-D dead-code` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(dead_code)]` help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 737 | pub struct PrintkArg(()); | ~~ ``` See rust-lang/rust#119659.
- Loading branch information