Skip to content

Commit

Permalink
Allow unused to deal with new warning about "unused" private fields…
Browse files Browse the repository at this point in the history
… in structs (#3103)
  • Loading branch information
kennykerr authored Jun 16, 2024
1 parent cd1e096 commit 977f1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/libs/windows/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs
#![doc(html_no_source)]
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, missing_docs, clippy::all)]
#![cfg_attr(not(feature = "docs"), doc(hidden))]
// TODO: https://github.com/microsoft/windows-rs/issues/3096
#![allow(dead_code)]
// TODO: workaround for https://github.com/rust-lang/rust/issues/126169
#![allow(unused)]

#[allow(unused_extern_crates)]
extern crate self as windows;
Expand Down

0 comments on commit 977f1da

Please sign in to comment.