| 114 | } |
| 115 | |
| 116 | static Interval fromInt(MathLib::bigint x, const ValueFlow::Value* ref = nullptr) |
| 117 | { |
| 118 | Interval result; |
| 119 | result.setMinValue(x, ref); |
| 120 | result.setMaxValue(x, ref); |
| 121 | return result; |
| 122 | } |
| 123 | |
| 124 | template<class Predicate> |
| 125 | static Interval fromValues(const std::list<ValueFlow::Value>& values, Predicate predicate) |
nothing calls this directly
no test coverage detected