| 6485 | } |
| 6486 | |
| 6487 | static ValueFlow::Value makeContainerSizeValue(MathLib::bigint s, bool known = true) |
| 6488 | { |
| 6489 | ValueFlow::Value value(s); |
| 6490 | value.valueType = ValueFlow::Value::ValueType::CONTAINER_SIZE; |
| 6491 | if (known) |
| 6492 | value.setKnown(); |
| 6493 | return value; |
| 6494 | } |
| 6495 | |
| 6496 | static std::vector<ValueFlow::Value> makeContainerSizeValue(const Token* tok, bool known = true) |
| 6497 | { |
no test coverage detected