From ad12be3668de26dc1b35bb374e93b2bab58d02ae Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Tue, 21 Nov 2023 22:59:02 +0000 Subject: [PATCH] allow clippy style in windows/c.rs We intentional use the Windows API style here. --- library/std/src/sys/windows/c.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/sys/windows/c.rs b/library/std/src/sys/windows/c.rs index a349e24b0395..ede04abf105f 100644 --- a/library/std/src/sys/windows/c.rs +++ b/library/std/src/sys/windows/c.rs @@ -3,6 +3,7 @@ #![allow(nonstandard_style)] #![cfg_attr(test, allow(dead_code))] #![unstable(issue = "none", feature = "windows_c")] +#![allow(clippy::style)] use crate::ffi::CStr; use crate::mem;