diff options
author | 2019-10-29 15:45:00 +0100 | |
---|---|---|
committer | 2019-10-29 15:45:00 +0100 | |
commit | b5c24630bdf5a23008885c4771a2d31060f8c180 (patch) | |
tree | d5578ba274055f223d89407f998e6c6dafe650a9 /src/lib.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/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -34,6 +34,7 @@ #![no_std] #![allow(clippy::identity_op)] #![allow(clippy::missing_safety_doc)] +#![deny(clippy::missing_inline_in_public_items)] extern crate aligned; extern crate bare_metal; |