mirror_frr/scripts/coccinelle/bool_expression.cocci
Donatas Abraitis 1781124916 tools: Add coccinelle script to check if bool expressions use short format
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
2020-03-04 15:01:54 +02:00

30 lines
169 B
Plaintext

@@
bool t;
@@
(
- t == true
+ t
|
- true == t
+ t
|
- t != true
+ !t
|
- true != t
+ !t
|
- t == false
+ !t
|
- false == t
+ !t
|
- t != false
+ t
|
- false != t
+ t
)