aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/cfg-whole-task.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/cfg-whole-task.rs b/examples/cfg-whole-task.rs
index 213fe13f..f41866db 100644
--- a/examples/cfg-whole-task.rs
+++ b/examples/cfg-whole-task.rs
@@ -15,7 +15,6 @@ mod app {
#[shared]
struct Shared {
- #[cfg(debug_assertions)] // <- `true` when using the `dev` profile
count: u32,
#[cfg(never)]
unused: u32,
@@ -31,7 +30,6 @@ mod app {
(
Shared {
- #[cfg(debug_assertions)]
count: 0,
#[cfg(never)]
unused: 1,