Skip to content

Commit

Permalink
Allow unused imports in windows module
Browse files Browse the repository at this point in the history
  • Loading branch information
saethlin committed Jan 5, 2024
1 parent 27f8f79 commit d0371d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! This module largely exists to integrate into libstd itself where winapi is
//! not currently available.

#![allow(bad_style, dead_code)]
#![allow(bad_style, dead_code, unused)]

cfg_if::cfg_if! {
if #[cfg(feature = "verify-winapi")] {
Expand Down

0 comments on commit d0371d4

Please sign in to comment.