diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2017-04-20 10:56:33 -0500 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2017-04-20 10:56:33 -0500 |
| commit | 0a6583ddc6909215e5db10e8df9da48cc7bffe1a (patch) | |
| tree | 9eb360e590e02a6d27c37d2699c8253ed067f3dc | |
| parent | 4e6818eb2cd396dde39f05bd85628326b0492fe9 (diff) | |
fix warning on thumbv6m-none-eabi
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,9 +18,9 @@ use cortex_m::interrupt::Nr; #[cfg(not(thumbv6m))] use cortex_m::register::{basepri, basepri_max}; use static_ref::Ref; -use typenum::{Cmp, Unsigned}; +use typenum::Unsigned; #[cfg(not(thumbv6m))] -use typenum::{Greater, Less}; +use typenum::{Cmp, Greater, Less}; pub use cortex_m::ctxt::Local; pub use cortex_m::asm::{bkpt, wfi}; |
