diff options
| author | Frostie314159 <[email protected]> | 2023-08-28 21:02:38 +0200 |
|---|---|---|
| committer | Frostie314159 <[email protected]> | 2023-08-28 21:02:38 +0200 |
| commit | 4098a61ef04e42294b182f4b0bf44ced97c706a0 (patch) | |
| tree | f9de0134d587b810a3a527ad959052882d082f53 /cyw43/src | |
| parent | 0568738f77d090d5d326abadd366a66aa4088ccd (diff) | |
cyw43: Fix warning in event.rs.
Allow non_upper_case_globals, to prevent the compiler from spitting out a warning about the Event enum.
Diffstat (limited to 'cyw43/src')
| -rw-r--r-- | cyw43/src/events.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyw43/src/events.rs b/cyw43/src/events.rs index a94c49a0c..ce0e7e373 100644 --- a/cyw43/src/events.rs +++ b/cyw43/src/events.rs | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #![allow(dead_code)] | 1 | #![allow(dead_code)] |
| 2 | #![allow(non_camel_case_types)] | 2 | #![allow(non_camel_case_types, non_upper_case_globals)] |
| 3 | 3 | ||
| 4 | use core::cell::RefCell; | 4 | use core::cell::RefCell; |
| 5 | 5 | ||
