.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /// Find &&/|| operations that include the same argument more than once |
---|
2 | 3 | //# A common source of false positives is when the expression, or |
---|
3 | 4 | //# another expresssion in the same && or || operation, performs a |
---|
4 | 5 | //# side effect. |
---|
5 | 6 | /// |
---|
6 | 7 | // Confidence: Moderate |
---|
7 | | -// Copyright: (C) 2010 Nicolas Palix, DIKU. GPLv2. |
---|
8 | | -// Copyright: (C) 2010 Julia Lawall, DIKU. GPLv2. |
---|
9 | | -// Copyright: (C) 2010 Gilles Muller, INRIA/LiP6. GPLv2. |
---|
| 8 | +// Copyright: (C) 2010 Nicolas Palix, DIKU. |
---|
| 9 | +// Copyright: (C) 2010 Julia Lawall, DIKU. |
---|
| 10 | +// Copyright: (C) 2010 Gilles Muller, INRIA/LiP6. |
---|
10 | 11 | // URL: http://coccinelle.lip6.fr/ |
---|
11 | 12 | // Comments: |
---|
12 | 13 | // Options: --no-includes --include-headers |
---|