| 54 | std::vector<const ValueFlow::Value*> minRef, maxRef; |
| 55 | |
| 56 | void setMinValue(MathLib::bigint x, const ValueFlow::Value* ref = nullptr) |
| 57 | { |
| 58 | minvalue = {x}; |
| 59 | if (ref) |
| 60 | minRef = {ref}; |
| 61 | } |
| 62 | |
| 63 | void setMaxValue(MathLib::bigint x, const ValueFlow::Value* ref = nullptr) |
| 64 | { |
no outgoing calls
no test coverage detected