Skip to content

Commit dec5ede

Browse files
clippy: Fix clippy::mixed_attributes_style lint. (#671)
1 parent 199badc commit dec5ede

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

io-surface/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ const RGB: GLenum = 0x1907;
3535
const TEXTURE_RECTANGLE_ARB: GLenum = 0x84F5;
3636
const UNSIGNED_INT_8_8_8_8_REV: GLenum = 0x8367;
3737

38-
#[allow(non_snake_case)]
38+
#[allow(non_snake_case, non_upper_case_globals)]
3939
pub mod IOSurfaceLockOptions {
40-
#![allow(non_upper_case_globals)]
4140
pub const kIOSurfaceLockReadOnly: u32 = 0x00000001;
4241
pub const kIOSurfaceLockAvoidSync: u32 = 0x00000002;
4342
}

0 commit comments

Comments
 (0)