mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
1813613fed
transformations. Otherwise the time and resources to generate all possible permutations is simply unreasonable for running on local machines.
26 lines
652 B
Plaintext
26 lines
652 B
Plaintext
/* Limit the number of expressions to 6 for performance reasons */
|
|
@@
|
|
expression e;
|
|
/* Exclude JsonVariant * from the transformation, as it can't work with the
|
|
* current version of the IN_SET macro */
|
|
typedef JsonVariant;
|
|
type T != JsonVariant*;
|
|
constant T n0, n1, n2, n3, n4, n5;
|
|
@@
|
|
(
|
|
- e == n0 || e == n1 || e == n2 || e == n3 || e == n4 || e == n5
|
|
+ IN_SET(e, n0, n1, n2, n3, n4, n5)
|
|
|
|
|
- e == n0 || e == n1 || e == n2 || e == n3 || e == n4
|
|
+ IN_SET(e, n0, n1, n2, n3, n4)
|
|
|
|
|
- e == n0 || e == n1 || e == n2 || e == n3
|
|
+ IN_SET(e, n0, n1, n2, n3)
|
|
|
|
|
- e == n0 || e == n1 || e == n2
|
|
+ IN_SET(e, n0, n1, n2)
|
|
|
|
|
- e == n0 || e == n1
|
|
+ IN_SET(e, n0, n1)
|
|
)
|