diff options
author | 2020-05-19 19:56:58 +0200 | |
---|---|---|
committer | 2020-05-19 19:56:58 +0200 | |
commit | 169328090dbbfd6e792f994d337958ee4e53e0a6 (patch) | |
tree | b6afdd3246f99c742df444e631541d62e6c4af97 | |
parent | b58f280f8b5e7e8b4a1ebde18f65f2e5bbc58b4f (diff) | |
download | cortex-m-169328090dbbfd6e792f994d337958ee4e53e0a6.tar.gz cortex-m-169328090dbbfd6e792f994d337958ee4e53e0a6.tar.zst cortex-m-169328090dbbfd6e792f994d337958ee4e53e0a6.zip |
Get rid of #[deny(warnings)]
This is considered harmful as the warnings may change with any compiler
release.
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
-rw-r--r-- | cortex-m-rt/macros/src/lib.rs | 2 | ||||
-rw-r--r-- | cortex-m-rt/src/lib.rs | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/cortex-m-rt/macros/src/lib.rs b/cortex-m-rt/macros/src/lib.rs index 09881b8..3c532c0 100644 --- a/cortex-m-rt/macros/src/lib.rs +++ b/cortex-m-rt/macros/src/lib.rs @@ -2,8 +2,6 @@ //! //! Do not use this crate directly. -#![deny(warnings)] - extern crate proc_macro; use proc_macro::TokenStream; diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index d680b6d..1988df6 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -401,7 +401,6 @@ // here will appear in the linker script (`link.x`) in conjunction with the `KEEP` command. #![deny(missing_docs)] -#![deny(warnings)] #![no_std] extern crate cortex_m_rt_macros as macros; |