| 4301 | } |
| 4302 | |
| 4303 | static bool isBreakScope(const Token* const endToken) |
| 4304 | { |
| 4305 | if (!Token::simpleMatch(endToken, "}")) |
| 4306 | return false; |
| 4307 | if (!Token::simpleMatch(endToken->link(), "{")) |
| 4308 | return false; |
| 4309 | return Token::findmatch(endToken->link(), "break|goto", endToken); |
| 4310 | } |
| 4311 | |
| 4312 | ValueFlow::Value ValueFlow::asImpossible(ValueFlow::Value v) |
| 4313 | { |
no test coverage detected