From 4098a61ef04e42294b182f4b0bf44ced97c706a0 Mon Sep 17 00:00:00 2001 From: Frostie314159 Date: Mon, 28 Aug 2023 21:02:38 +0200 Subject: [PATCH] cyw43: Fix warning in event.rs. Allow non_upper_case_globals, to prevent the compiler from spitting out a warning about the Event enum. --- cyw43/src/events.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyw43/src/events.rs b/cyw43/src/events.rs index a94c49a0..ce0e7e37 100644 --- a/cyw43/src/events.rs +++ b/cyw43/src/events.rs @@ -1,5 +1,5 @@ #![allow(dead_code)] -#![allow(non_camel_case_types)] +#![allow(non_camel_case_types, non_upper_case_globals)] use core::cell::RefCell;