| 285 | } |
| 286 | |
| 287 | static bool frontIs(const std::vector<MathLib::bigint>& v, bool i) |
| 288 | { |
| 289 | if (v.empty()) |
| 290 | return false; |
| 291 | if (v.front()) |
| 292 | return i; |
| 293 | return !i; |
| 294 | } |
| 295 | |
| 296 | static bool isTrue(const ValueFlow::Value& v) |
| 297 | { |
no test coverage detected