Suppress some clippy warnings for ffi module

No need to heed clippy warnings on code automatically generated by
bindgen.
This commit is contained in:
Stephen Seo 2024-03-18 16:36:46 +09:00
parent 6e2e67f086
commit 05cf805c03

View file

@ -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 {