Files
codeql/cpp/ql/src/Likely Bugs/Arithmetic/PointlessSelfComparisonExample.cpp
2018-08-02 17:53:23 +01:00

6 lines
93 B
C++

typedef int T;
bool checkOverflow(T x) {
return (x == (int)x); // Always returns true.
}