We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eddd7d2 commit adae056Copy full SHA for adae056
src/threadpool.rs
@@ -30,8 +30,8 @@ static SPAWNING: AtomicBool = AtomicBool::new(false);
30
31
macro_rules! once {
32
($args:block) => {
33
- static E: AtomicBool = AtomicBool::new(false);
34
- if !E.compare_and_swap(false, true, Relaxed) {
+ static __E: AtomicBool = AtomicBool::new(false);
+ if !__E.compare_and_swap(false, true, Relaxed) {
35
// only execute this once
36
$args;
37
}
0 commit comments