diff options
author | 2020-05-19 19:56:58 +0200 | |
---|---|---|
committer | 2020-05-19 19:56:58 +0200 | |
commit | 169328090dbbfd6e792f994d337958ee4e53e0a6 (patch) | |
tree | b6afdd3246f99c742df444e631541d62e6c4af97 /cortex-m-rt/src/lib.rs | |
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>
Diffstat (limited to '')
-rw-r--r-- | cortex-m-rt/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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; |