mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +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;
|
|
} |