| 2599 | } |
| 2600 | |
| 2601 | const ValueFlow::Value* Token::getMaxValue(bool condition, MathLib::bigint path) const |
| 2602 | { |
| 2603 | if (!mImpl->mValues) |
| 2604 | return nullptr; |
| 2605 | return getCompareValue(*mImpl->mValues, condition, path, std::greater<MathLib::bigint>{}); |
| 2606 | } |
| 2607 | |
| 2608 | const ValueFlow::Value* Token::getMinValue(bool condition, MathLib::bigint path) const |
| 2609 | { |
no test coverage detected