Skip to content

Commit

Permalink
aya: appease nightly lint
Browse files Browse the repository at this point in the history
```
error: lint `unused_tuple_struct_fields` has been renamed to `dead_code`
  --> aya/src/lib.rs:74:5
   |
74 |     unused_tuple_struct_fields,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `dead_code`
   |
   = note: `-D renamed-and-removed-lints` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(renamed_and_removed_lints)]`
```

See rust-lang/rust@9fcf9c141068984ffcbb4cb00c.
  • Loading branch information
tamird committed Jan 6, 2024
1 parent e1aefa4 commit 7c1bfef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion aya/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
unused_macro_rules,
unused_qualifications,
//unused_results,
unused_tuple_struct_fields,
)]
#![allow(clippy::missing_safety_doc, clippy::len_without_is_empty)]
#![cfg_attr(
Expand Down

0 comments on commit 7c1bfef

Please sign in to comment.