-
-
Notifications
You must be signed in to change notification settings - Fork 15
README.md: AtomicBool vs AtomicU32 #134
Copy link
Copy link
Open
Description
Hi,
The README.md shows AtomicU32::new(<boolean literal>) assigned to AtomicBool:
static FLAG1: AtomicBool = AtomicU32::new(false); // .bss
static FLAG2: AtomicBool = AtomicU32::new(true); // .dataI assume this is meant to mean AtomicBool::new?
-static FLAG1: AtomicBool = AtomicU32::new(false); // .bss
+static FLAG1: AtomicBool = AtomicBool::new(false); // .bss
-static FLAG2: AtomicBool = AtomicU32::new(true); // .data
+static FLAG2: AtomicBool = AtomicBool::new(true); // .dataReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels