From a39f1f513353eda8ef689e8aeb0db8b5a45b5515 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 8 Aug 2024 12:55:26 -0400 Subject: [PATCH] Fix Windows build in CI (#15990) This PR fixes the Windows build in CI, which was failing due to Clippy warnings. Release Notes: - N/A --- crates/assistant/src/assistant.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/assistant/src/assistant.rs b/crates/assistant/src/assistant.rs index b9b2d53240920d5fe7a87c8c8d69a35b66824381..9a55b41da43cc3d5abac2e166ee1074ade7f8638 100644 --- a/crates/assistant/src/assistant.rs +++ b/crates/assistant/src/assistant.rs @@ -1,3 +1,5 @@ +#![cfg_attr(target_os = "windows", allow(unused, dead_code))] + pub mod assistant_panel; pub mod assistant_settings; mod context;