mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Fix CI
This commit is contained in:
parent
50017b96f0
commit
9e24fcbbd9
1 changed files with 0 additions and 2 deletions
|
@ -15,7 +15,6 @@ mod app {
|
||||||
|
|
||||||
#[shared]
|
#[shared]
|
||||||
struct Shared {
|
struct Shared {
|
||||||
#[cfg(debug_assertions)] // <- `true` when using the `dev` profile
|
|
||||||
count: u32,
|
count: u32,
|
||||||
#[cfg(never)]
|
#[cfg(never)]
|
||||||
unused: u32,
|
unused: u32,
|
||||||
|
@ -31,7 +30,6 @@ mod app {
|
||||||
|
|
||||||
(
|
(
|
||||||
Shared {
|
Shared {
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
count: 0,
|
count: 0,
|
||||||
#[cfg(never)]
|
#[cfg(never)]
|
||||||
unused: 1,
|
unused: 1,
|
||||||
|
|
Loading…
Reference in a new issue