aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/src/lib.rs
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2020-05-24 00:36:50 +0000
committerGravatar GitHub <noreply@github.com> 2020-05-24 00:36:50 +0000
commit1bbc1bc59bf92e74cf38502d34071dcc268d402b (patch)
treeb6afdd3246f99c742df444e631541d62e6c4af97 /cortex-m-rt/src/lib.rs
parentb58f280f8b5e7e8b4a1ebde18f65f2e5bbc58b4f (diff)
parent169328090dbbfd6e792f994d337958ee4e53e0a6 (diff)
downloadcortex-m-1bbc1bc59bf92e74cf38502d34071dcc268d402b.tar.gz
cortex-m-1bbc1bc59bf92e74cf38502d34071dcc268d402b.tar.zst
cortex-m-1bbc1bc59bf92e74cf38502d34071dcc268d402b.zip
Merge #271
271: Get rid of #[deny(warnings)] r=adamgreig a=therealprof This is considered harmful as the warnings may change with any compiler release. Signed-off-by: Daniel Egger <daniel@eggers-club.de> Co-authored-by: Daniel Egger <daniel@eggers-club.de>
Diffstat (limited to '')
-rw-r--r--cortex-m-rt/src/lib.rs1
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;