]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/bool-cast.cocci
Merge pull request #11707 from keszybz/man-directives-spring-cleaning
[thirdparty/systemd.git] / coccinelle / bool-cast.cocci
1 @@
2 bool b;
3 expression y;
4 @@
5 - b = !!(y);
6 + b = y;
7 @@
8 bool b;
9 expression y;
10 @@
11 - b = !!y;
12 + b = y;