Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
// Two comparisons of the same expression to different constants, |
|
// connected by a conjunction |
|
// Confidence: Moderate |
|
// Copyright: (C) Diego Liziero |
|
// URL: https://coccinelle.gitlabpages.inria.fr/website/rules/andconst.html |
|
// Options: |
|
|
|
@@ identifier i; constant C1,C2; @@ |
|
( |
|
- i == C1 && i == C2 |
|
+ i == C1 || i == C2 |
|
) |
|
|
|
@@ identifier i; constant C1,C2; @@ |
|
( |
|
- i != C1 || i != C2 |
|
+ i != C1 && i != C2 |
|
)
|
|
|