| 441 | } |
| 442 | |
| 443 | static bool isVector(const Token* tok) |
| 444 | { |
| 445 | if (!tok) |
| 446 | return false; |
| 447 | const Variable *var = tok->variable(); |
| 448 | const Token *decltok = var ? var->typeStartToken() : nullptr; |
| 449 | return Token::simpleMatch(decltok, "std :: vector"); |
| 450 | } |
| 451 | |
| 452 | void CheckStlImpl::iterators() |
| 453 | { |
no test coverage detected