We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clippy::mixed_attributes_style
1 parent 199badc commit dec5edeCopy full SHA for dec5ede
io-surface/src/lib.rs
@@ -35,9 +35,8 @@ const RGB: GLenum = 0x1907;
35
const TEXTURE_RECTANGLE_ARB: GLenum = 0x84F5;
36
const UNSIGNED_INT_8_8_8_8_REV: GLenum = 0x8367;
37
38
-#[allow(non_snake_case)]
+#[allow(non_snake_case, non_upper_case_globals)]
39
pub mod IOSurfaceLockOptions {
40
- #![allow(non_upper_case_globals)]
41
pub const kIOSurfaceLockReadOnly: u32 = 0x00000001;
42
pub const kIOSurfaceLockAvoidSync: u32 = 0x00000002;
43
}
0 commit comments