diff options
author | 2019-10-29 15:45:00 +0100 | |
---|---|---|
committer | 2019-10-29 15:45:00 +0100 | |
commit | b5c24630bdf5a23008885c4771a2d31060f8c180 (patch) | |
tree | d5578ba274055f223d89407f998e6c6dafe650a9 /src/peripheral/syst.rs | |
parent | 3607c6cfd5e7c1635064efbf37939420ea0b9d84 (diff) | |
download | cortex-m-b5c24630bdf5a23008885c4771a2d31060f8c180.tar.gz cortex-m-b5c24630bdf5a23008885c4771a2d31060f8c180.tar.zst cortex-m-b5c24630bdf5a23008885c4771a2d31060f8c180.zip |
Enable the missing_inline_in_public_items clippy lint.
Diffstat (limited to 'src/peripheral/syst.rs')
-rw-r--r-- | src/peripheral/syst.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/peripheral/syst.rs b/src/peripheral/syst.rs index abcd00b..69bc488 100644 --- a/src/peripheral/syst.rs +++ b/src/peripheral/syst.rs @@ -18,6 +18,7 @@ pub struct RegisterBlock { } /// SysTick clock source +#[allow(clippy::missing_inline_in_public_items)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum SystClkSource { /// Core-provided clock |