Skip to content

Commit 7d57d08

Browse files
committed
Fix clippy warning
1 parent 062ef58 commit 7d57d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cortex-m-rt/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ pub static __INTERRUPTS: [unsafe extern "C" fn(); 240] = [{
12471247
}; 240];
12481248

12491249
// ARMv8-M can have up to 496 device specific interrupts
1250-
#[cfg(all(any(not(feature = "device")), armv8m))]
1250+
#[cfg(all(not(feature = "device"), armv8m))]
12511251
#[doc(hidden)]
12521252
#[cfg_attr(cortex_m, link_section = ".vector_table.interrupts")]
12531253
#[no_mangle]

0 commit comments

Comments
 (0)