mirror of
https://github.com/github/codeql.git
synced 2026-05-12 02:09:27 +02:00
7 lines
152 B
C++
7 lines
152 B
C++
void h() {
|
|
int a, b, c;
|
|
|
|
a < b != c; //parenthesize to explicitly define order of operators
|
|
(a < b) < c; //correct: parenthesized to specify order
|
|
}
|