| 312 | } |
| 313 | |
| 314 | static bool isTrueOrFalse(const ValueFlow::Value& v, bool b) |
| 315 | { |
| 316 | if (b) |
| 317 | return isTrue(v); |
| 318 | return isFalse(v); |
| 319 | } |
| 320 | |
| 321 | // If the scope is a non-range for loop |
| 322 | static bool isBasicForLoop(const Token* tok) |
no test coverage detected