Suppress some clippy warnings for ffi module
No need to heed clippy warnings on code automatically generated by bindgen.
This commit is contained in:
parent
6e2e67f086
commit
05cf805c03
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,8 @@
|
|||
#![allow(non_snake_case)]
|
||||
#![allow(unused_imports)]
|
||||
#![allow(dead_code)]
|
||||
#![allow(clippy::complexity)]
|
||||
#![allow(clippy::style)]
|
||||
include!(concat!(env!("OUT_DIR"), "/glfw_vk_bindings.rs"));
|
||||
|
||||
pub fn VK_MAKE_VERSION(major: u32, minor: u32, patch: u32) -> u32 {
|
||||
|
|
Loading…
Reference in a new issue