From 05cf805c03d27897ecfe080bc5653b385951a30c Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 18 Mar 2024 16:36:46 +0900 Subject: [PATCH] Suppress some clippy warnings for ffi module No need to heed clippy warnings on code automatically generated by bindgen. --- src/ffi.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ffi.rs b/src/ffi.rs index 798fdf7..5178c85 100644 --- a/src/ffi.rs +++ b/src/ffi.rs @@ -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 {