| 4359 | } |
| 4360 | |
| 4361 | MathLib::bigint getPath() const |
| 4362 | { |
| 4363 | assert(std::abs(findPath(true_values) - findPath(false_values)) == 0); |
| 4364 | return findPath(true_values) | findPath(false_values); |
| 4365 | } |
| 4366 | |
| 4367 | Token* getContextAndValues(Token* condTok, |
| 4368 | std::list<ValueFlow::Value>& thenValues, |
no test coverage detected