mirror of
https://github.com/github/codeql.git
synced 2026-03-26 09:18:16 +01:00
4 lines
123 B
C++
4 lines
123 B
C++
bool compare_xyz(unsigned short x, unsigned short y, unsigned short z) {
|
|
return (x + y < x + z); // x can be canceled
|
|
}
|