| 1935 | } |
| 1936 | |
| 1937 | const ValueFlow::Value * Token::getValueGE(const MathLib::bigint val, const Settings &settings) const |
| 1938 | { |
| 1939 | if (!mImpl->mValues) |
| 1940 | return nullptr; |
| 1941 | return ValueFlow::findValue(*mImpl->mValues, settings, [&](const ValueFlow::Value& v) { |
| 1942 | return !v.isImpossible() && v.isIntValue() && v.intvalue >= val; |
| 1943 | }); |
| 1944 | } |
| 1945 | |
| 1946 | const ValueFlow::Value * Token::getValueNE(MathLib::bigint val) const |
| 1947 | { |
no test coverage detected