Skip to content

Commit

Permalink
asm: silence warning about asm being stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Dec 16, 2021
1 parent fcc0985 commit 46a3320
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@
// - A generated #[derive(Debug)] function (in which case the attribute needs
// to be applied to the struct).
#![deny(clippy::missing_inline_in_public_items)]
// Don't warn about feature(asm) being stable on Rust >= 1.59.0
#![allow(stable_features)]

extern crate bare_metal;
extern crate volatile_register;
Expand Down

0 comments on commit 46a3320

Please sign in to comment.