mirror of
https://github.com/github/codeql.git
synced 2026-03-31 20:58:16 +02:00
4 lines
95 B
C++
4 lines
95 B
C++
int isEven(int n) {
|
|
//FIXME: Is only correct for small values of n
|
|
return n == 0 || n == 2;
|
|
} |