From 9b5a011afce0946c061cca54964125715779ab7d Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sun, 17 Mar 2024 18:53:55 +0900 Subject: [PATCH] Suppress clippy warning about wordy fn return type --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index b1bcb2e..f872901 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1721,6 +1721,7 @@ impl VulkanApp { Err(String::from("Failed to find suitable memory type!")) } + #[allow(clippy::type_complexity)] fn create_vertex_input_state_info_struct() -> Result< ( ffi::VkPipelineVertexInputStateCreateInfo,