]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/flags-set.cocci
Merge pull request #10538 from poettering/tmpfiles-reorder
[thirdparty/systemd.git] / coccinelle / flags-set.cocci
1 @@
2 expression x, y;
3 @@
4 - ((x) & (y)) == (y)
5 + FLAGS_SET(x, y)
6 @@
7 expression x, y;
8 @@
9 - (x & (y)) == (y)
10 + FLAGS_SET(x, y)
11 @@
12 expression x, y;
13 @@
14 - ((x) & y) == y
15 + FLAGS_SET(x, y)