| 392 | namespace { |
| 393 | struct IntegralInferModel : InferModel { |
| 394 | bool match(const ValueFlow::Value& value) const override { |
| 395 | return value.isIntValue(); |
| 396 | } |
| 397 | ValueFlow::Value yield(MathLib::bigint value) const override |
| 398 | { |
| 399 | ValueFlow::Value result(value); |
no outgoing calls
no test coverage detected