mirror of
https://github.com/github/codeql.git
synced 2026-01-27 05:13:00 +01: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;
|
|
} |