| 106 | } |
| 107 | |
| 108 | std::vector<const ValueFlow::Value*> getScalarRef() const |
| 109 | { |
| 110 | assert(isScalar()); |
| 111 | if (minRef != maxRef) |
| 112 | return merge(minRef, maxRef); |
| 113 | return minRef; |
| 114 | } |
| 115 | |
| 116 | static Interval fromInt(MathLib::bigint x, const ValueFlow::Value* ref = nullptr) |
| 117 | { |