We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbdb6f commit d6c2485Copy full SHA for d6c2485
cortex-m-rt/examples/device.rs
@@ -16,6 +16,7 @@ fn main() -> ! {
16
}
17
18
// interrupts portion of the vector table
19
+#[repr(C)]
20
pub union Vector {
21
handler: unsafe extern "C" fn(),
22
reserved: usize,
cortex-m-rt/examples/warnings.rs
@@ -22,6 +22,7 @@ extern "C" {
fn INT();
23
24
25
26
union Vector {
27
#[allow(dead_code)]
28
cortex-m-rt/src/lib.rs
@@ -1128,6 +1128,7 @@ extern "C" {
1128
1129
1130
#[doc(hidden)]
1131
1132
1133
1134
0 commit comments