diff options
author | 2020-06-06 17:59:38 +0200 | |
---|---|---|
committer | 2020-06-06 17:59:38 +0200 | |
commit | 17e9a15657ecf551464caf6ab97f7c1e264e711d (patch) | |
tree | 1a332146d1077504dd75266d5d81cab9c6e3064b /src | |
parent | 3136e01e708413774d7be2868705e1782c910027 (diff) | |
download | cortex-m-17e9a15657ecf551464caf6ab97f7c1e264e711d.tar.gz cortex-m-17e9a15657ecf551464caf6ab97f7c1e264e711d.tar.zst cortex-m-17e9a15657ecf551464caf6ab97f7c1e264e711d.zip |
Fix clippy warning
Diffstat (limited to 'src')
-rw-r--r-- | src/peripheral/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs index 04fae31..e0fcfca 100644 --- a/src/peripheral/mod.rs +++ b/src/peripheral/mod.rs @@ -90,6 +90,7 @@ mod test; /// Core peripherals #[allow(non_snake_case)] +#[allow(clippy::manual_non_exhaustive)] pub struct Peripherals { /// Cache and branch predictor maintenance operations. /// Not available on Armv6-M. |